#Introduction

Copenhagen, the happiest city in the world, Who doesn’t want to go there! Happiness comes at a price though, you’ll need to find a place to stay. What better way to look for a place to stay than on AirBnB and us being students, want to go there when the prices are cheapest. This is where the MAM program from LBS is already paying itself off. To find out what variables (e.g. room type, property type) influence the price most and to predict when is best to go, we’re running a regression analysis. So our dream holiday can become reality.

The data we will be using for this comes directly from AirBnB. In this analysis we will only be using data on the city of Copenhagen. the data shows the listings as per June 26th 2020.

This analysis is divided into 4 parts:

  1. Executive summary
  2. Exploratory data analysis
  3. Regression analysis
  4. Conclusion

#Executive summary

to be filled in after conclusion.

#Exploratory data analysis To get an idea of the data structure, an exploratory data analysis is conducted. The first steps are to look at the raw values and to clean the data afterwards. This gives a foundation to use in summary statistics. Finally, visualisations will give an impression of any correlations in variables and will give an outlook on variables that stand out.

##Looking at the raw values

First of all, the data needs to be loaded. The clean_names() function is used to make the values consistent and neat, to help with the data wrangling.

listings <- vroom("http://data.insideairbnb.com/denmark/hovedstaden/copenhagen/2020-06-26/data/listings.csv.gz") %>%
  
    # Get the listings for Copenhagen
    clean_names()  
## Rows: 28,523
## Columns: 106
## Delimiter: ","
## chr  [45]: listing_url, name, summary, space, description, experiences_offered, neighborho...
## dbl  [40]: id, scrape_id, host_id, host_listings_count, host_total_listings_count, zipcode...
## lgl  [16]: thumbnail_url, medium_url, xl_picture_url, host_is_superhost, host_has_profile_...
## date [ 5]: last_scraped, host_since, calendar_last_scraped, first_review, last_review
## 
## Use `spec()` to retrieve the guessed column specification
## Pass a specification to the `col_types` argument to quiet this message

Having looked at the data, the following variables will be of importance throughout this analysis:

  1. price : cost per night

  2. cleaning_fee: cleaning fee

  3. extra_people: charge for having more than 1 person

  4. property_type: type of accommodation (House, Apartment, etc.)

  5. room_type: Entire home/apt (guests have entire place to themselves) Private room (Guests have private room to sleep, all other rooms shared) Shared room (Guests sleep in room shared with others) number_of_reviews: Total number of reviews for the listing

  6. review_scores_rating: Average review score (0 - 100)

  7. longitude , latitude: geographical coordinates to help us locate the listing

  8. neighborhood*: three variables on a few major neighborhoods in each city

add any variables we are using to this list

The next step is to check the data for the properties of the variables and if there are any missing or NA values that need to be addressed.

## Rows: 28,523
## Columns: 106
## $ id                                           <dbl> 6983, 26057, 26473, 29...
## $ listing_url                                  <chr> "https://www.airbnb.co...
## $ scrape_id                                    <dbl> 2.020063e+13, 2.020063...
## $ last_scraped                                 <date> 2020-06-28, 2020-06-2...
## $ name                                         <chr> "Copenhagen 'N Livin'"...
## $ summary                                      <chr> "Lovely apartment loca...
## $ space                                        <chr> "Beautiful and cosy ap...
## $ description                                  <chr> "Lovely apartment loca...
## $ experiences_offered                          <chr> "none", "none", "none"...
## $ neighborhood_overview                        <chr> "Nice bars and cozy ca...
## $ notes                                        <chr> NA, NA, NA, NA, "Pleas...
## $ transit                                      <chr> "Bus 66 runs to the ce...
## $ access                                       <chr> "Bedroom, living room,...
## $ interaction                                  <chr> "We are usually at wor...
## $ house_rules                                  <chr> "No smoking allowed! N...
## $ thumbnail_url                                <lgl> NA, NA, NA, NA, NA, NA...
## $ medium_url                                   <lgl> NA, NA, NA, NA, NA, NA...
## $ picture_url                                  <chr> "https://a0.muscache.c...
## $ xl_picture_url                               <lgl> NA, NA, NA, NA, NA, NA...
## $ host_id                                      <dbl> 16774, 109777, 112210,...
## $ host_url                                     <chr> "https://www.airbnb.co...
## $ host_name                                    <chr> "Simon", "Kari", "Oliv...
## $ host_since                                   <date> 2009-05-12, 2010-04-1...
## $ host_location                                <chr> "Copenhagen, Capital R...
## $ host_about                                   <chr> "I'm currently working...
## $ host_response_time                           <chr> "N/A", "N/A", "within ...
## $ host_response_rate                           <chr> "N/A", "N/A", "100%", ...
## $ host_acceptance_rate                         <chr> "33%", "19%", "100%", ...
## $ host_is_superhost                            <lgl> FALSE, FALSE, FALSE, F...
## $ host_thumbnail_url                           <chr> "https://a0.muscache.c...
## $ host_picture_url                             <chr> "https://a0.muscache.c...
## $ host_neighbourhood                           <chr> "Nørrebro", "Indre By"...
## $ host_listings_count                          <dbl> 1, 1, 4, 1, 1, 1, 3, 1...
## $ host_total_listings_count                    <dbl> 1, 1, 4, 1, 1, 1, 3, 1...
## $ host_verifications                           <chr> "['email', 'phone', 'r...
## $ host_has_profile_pic                         <lgl> TRUE, TRUE, TRUE, TRUE...
## $ host_identity_verified                       <lgl> FALSE, FALSE, TRUE, FA...
## $ street                                       <chr> "Copenhagen, Hovedstad...
## $ neighbourhood                                <chr> "Nørrebro", "Indre By"...
## $ neighbourhood_cleansed                       <chr> "Nrrebro", "Indre By",...
## $ neighbourhood_group_cleansed                 <lgl> NA, NA, NA, NA, NA, NA...
## $ city                                         <chr> "Copenhagen", "Copenha...
## $ state                                        <chr> "Hovedstaden", "Hoveds...
## $ zipcode                                      <dbl> 2200, 2100, 1210, 1650...
## $ market                                       <chr> "Copenhagen", "Copenha...
## $ smart_location                               <chr> "Copenhagen, Denmark",...
## $ country_code                                 <chr> "DK", "DK", "DK", "DK"...
## $ country                                      <chr> "Denmark", "Denmark", ...
## $ latitude                                     <dbl> 55.68798, 55.69163, 55...
## $ longitude                                    <dbl> 12.54571, 12.57459, 12...
## $ is_location_exact                            <lgl> TRUE, TRUE, TRUE, TRUE...
## $ property_type                                <chr> "Apartment", "House", ...
## $ room_type                                    <chr> "Private room", "Entir...
## $ accommodates                                 <dbl> 2, 6, 12, 2, 4, 3, 3, ...
## $ bathrooms                                    <dbl> 1.0, 1.5, 2.5, 1.0, 1....
## $ bedrooms                                     <dbl> 1, 4, 6, 1, 3, 1, 1, 2...
## $ beds                                         <dbl> 1, 4, 7, 1, 3, 3, 2, 2...
## $ bed_type                                     <chr> "Real Bed", "Real Bed"...
## $ amenities                                    <chr> "{TV,\"Cable TV\",Wifi...
## $ square_feet                                  <dbl> 97, NA, NA, NA, NA, 68...
## $ price                                        <chr> "$365.00", "$2,398.00"...
## $ weekly_price                                 <chr> NA, NA, "$17,513.00", ...
## $ monthly_price                                <chr> NA, NA, "$67,073.00", ...
## $ security_deposit                             <chr> "$0.00", "$5,000.00", ...
## $ cleaning_fee                                 <chr> "$33.00", "$1,100.00",...
## $ guests_included                              <dbl> 1, 3, 1, 1, 1, 2, 2, 2...
## $ extra_people                                 <chr> "$66.00", "$350.00", "...
## $ minimum_nights                               <dbl> 2, 3, 3, 7, 7, 2, 3, 6...
## $ maximum_nights                               <dbl> 15, 30, 31, 14, 31, 10...
## $ minimum_minimum_nights                       <dbl> 2, 3, 3, 3, 7, 2, 3, 6...
## $ maximum_minimum_nights                       <dbl> 2, 3, 3, 5, 7, 2, 3, 6...
## $ minimum_maximum_nights                       <dbl> 15, 30, 1125, 14, 1125...
## $ maximum_maximum_nights                       <dbl> 15, 30, 1125, 14, 1125...
## $ minimum_nights_avg_ntm                       <dbl> 2.0, 3.0, 3.0, 4.1, 7....
## $ maximum_nights_avg_ntm                       <dbl> 15, 30, 1125, 14, 1125...
## $ calendar_updated                             <chr> "5 months ago", "4 mon...
## $ has_availability                             <lgl> TRUE, TRUE, TRUE, TRUE...
## $ availability_30                              <dbl> 29, 28, 29, 21, 0, 0, ...
## $ availability_60                              <dbl> 59, 58, 59, 21, 0, 0, ...
## $ availability_90                              <dbl> 89, 88, 89, 21, 0, 0, ...
## $ availability_365                             <dbl> 89, 363, 172, 21, 0, 5...
## $ calendar_last_scraped                        <date> 2020-06-28, 2020-06-2...
## $ number_of_reviews                            <dbl> 168, 50, 293, 22, 90, ...
## $ number_of_reviews_ltm                        <dbl> 1, 4, 31, 2, 0, 0, 1, ...
## $ first_review                                 <date> 2009-09-04, 2013-12-0...
## $ last_review                                  <date> 2019-07-19, 2019-12-1...
## $ review_scores_rating                         <dbl> 96, 98, 91, 98, 94, 97...
## $ review_scores_accuracy                       <dbl> 10, 10, 10, 10, 10, 10...
## $ review_scores_cleanliness                    <dbl> 9, 10, 9, 10, 9, 10, 1...
## $ review_scores_checkin                        <dbl> 10, 10, 10, 10, 10, 10...
## $ review_scores_communication                  <dbl> 10, 10, 10, 10, 9, 10,...
## $ review_scores_location                       <dbl> 9, 10, 10, 10, 10, 10,...
## $ review_scores_value                          <dbl> 9, 10, 9, 10, 9, 9, 9,...
## $ requires_license                             <lgl> FALSE, FALSE, FALSE, F...
## $ license                                      <lgl> NA, NA, NA, NA, NA, NA...
## $ jurisdiction_names                           <lgl> NA, NA, NA, NA, NA, NA...
## $ instant_bookable                             <lgl> FALSE, FALSE, FALSE, F...
## $ is_business_travel_ready                     <lgl> FALSE, FALSE, FALSE, F...
## $ cancellation_policy                          <chr> "moderate", "moderate"...
## $ require_guest_profile_picture                <lgl> FALSE, FALSE, FALSE, F...
## $ require_guest_phone_verification             <lgl> FALSE, FALSE, FALSE, F...
## $ calculated_host_listings_count               <dbl> 1, 1, 1, 1, 1, 1, 1, 1...
## $ calculated_host_listings_count_entire_homes  <dbl> 0, 1, 1, 1, 1, 1, 1, 1...
## $ calculated_host_listings_count_private_rooms <dbl> 1, 0, 0, 0, 0, 0, 0, 0...
## $ calculated_host_listings_count_shared_rooms  <dbl> 0, 0, 0, 0, 0, 0, 0, 0...
## $ reviews_per_month                            <dbl> 1.28, 0.62, 2.48, 0.18...
Data summary
Name listings
Number of rows 28523
Number of columns 106
_______________________
Column type frequency:
character 45
Date 5
logical 16
numeric 40
________________________
Group variables None

Variable type: character

skim_variable n_missing complete_rate min max empty n_unique whitespace
listing_url 0 1.00 33 37 0 28523 0
name 57 1.00 1 211 0 26907 0
summary 1096 0.96 1 1000 0 26986 0
space 11390 0.60 1 1000 0 16806 0
description 515 0.98 1 1000 0 27748 0
experiences_offered 0 1.00 4 4 0 1 0
neighborhood_overview 12407 0.57 1 1000 0 15520 0
notes 20832 0.27 1 1000 0 7366 0
transit 11316 0.60 1 1000 0 16714 0
access 15751 0.45 1 1000 0 11251 0
interaction 14111 0.51 1 1000 0 13728 0
house_rules 13332 0.53 1 1000 0 13703 0
picture_url 0 1.00 81 146 0 28282 0
host_url 0 1.00 37 43 0 25745 0
host_name 12 1.00 1 34 0 6415 0
host_location 93 1.00 2 152 0 863 0
host_about 14028 0.51 1 3550 0 12478 34
host_response_time 11 1.00 3 18 0 5 0
host_response_rate 11 1.00 2 4 0 44 0
host_acceptance_rate 11 1.00 2 4 0 100 0
host_thumbnail_url 11 1.00 55 106 0 25669 0
host_picture_url 11 1.00 57 109 0 25669 0
host_neighbourhood 8007 0.72 1 21 0 56 0
host_verifications 0 1.00 2 156 0 316 0
street 0 1.00 10 61 0 528 0
neighbourhood 0 1.00 5 14 0 21 0
neighbourhood_cleansed 0 1.00 5 25 0 11 0
city 13 1.00 1 26 0 136 0
state 24042 0.16 1 25 0 170 0
market 864 0.97 6 21 0 10 0
smart_location 0 1.00 10 35 0 158 0
country_code 0 1.00 2 2 0 1 0
country 0 1.00 7 7 0 1 0
property_type 0 1.00 3 22 0 29 0
room_type 0 1.00 10 15 0 4 0
bed_type 0 1.00 5 13 0 5 0
amenities 0 1.00 2 1179 0 26634 0
price 0 1.00 5 10 0 611 0
weekly_price 25008 0.12 7 11 0 718 0
monthly_price 26971 0.05 7 11 0 476 0
security_deposit 13845 0.51 5 10 0 386 0
cleaning_fee 8968 0.69 5 9 0 430 0
extra_people 0 1.00 5 9 0 265 0
calendar_updated 0 1.00 5 13 0 82 0
cancellation_policy 0 1.00 8 27 0 4 0

Variable type: Date

skim_variable n_missing complete_rate min max median n_unique
last_scraped 0 1.00 2020-06-26 2020-06-30 2020-06-27 5
host_since 11 1.00 2008-06-27 2020-06-26 2015-06-22 3379
calendar_last_scraped 0 1.00 2020-06-26 2020-06-30 2020-06-27 5
first_review 4968 0.83 2009-09-04 2020-06-28 2017-08-07 2582
last_review 4968 0.83 2011-08-10 2020-06-28 2019-07-29 1846

Variable type: logical

skim_variable n_missing complete_rate mean count
thumbnail_url 28523 0 NaN :
medium_url 28523 0 NaN :
xl_picture_url 28523 0 NaN :
host_is_superhost 11 1 0.10 FAL: 25610, TRU: 2902
host_has_profile_pic 11 1 1.00 TRU: 28445, FAL: 67
host_identity_verified 11 1 0.38 FAL: 17790, TRU: 10722
neighbourhood_group_cleansed 28523 0 NaN :
is_location_exact 0 1 0.79 TRU: 22507, FAL: 6016
has_availability 0 1 1.00 TRU: 28523
requires_license 0 1 0.00 FAL: 28523
license 28523 0 NaN :
jurisdiction_names 28523 0 NaN :
instant_bookable 0 1 0.29 FAL: 20360, TRU: 8163
is_business_travel_ready 0 1 0.00 FAL: 28523
require_guest_profile_picture 0 1 0.01 FAL: 28379, TRU: 144
require_guest_phone_verification 0 1 0.01 FAL: 28327, TRU: 196

Variable type: numeric

skim_variable n_missing complete_rate mean sd p0 p25 p50 p75 p100 hist
id 0 1.00 2.044063e+07 12261143.29 6.983000e+03 1.008379e+07 1.950297e+07 3.043587e+07 4.395635e+07 ▇▇▇▅▆
scrape_id 0 1.00 2.020063e+13 0.00 2.020063e+13 2.020063e+13 2.020063e+13 2.020063e+13 2.020063e+13 ▁▁▇▁▁
host_id 0 1.00 6.731400e+07 76172316.22 5.130000e+02 1.281774e+07 3.604205e+07 9.463162e+07 3.519509e+08 ▇▂▁▁▁
host_listings_count 11 1.00 5.460000e+00 34.32 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 7.370000e+02 ▇▁▁▁▁
host_total_listings_count 11 1.00 5.460000e+00 34.32 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 7.370000e+02 ▇▁▁▁▁
zipcode 815 0.97 2.069760e+03 390.81 2.000000e+01 1.855750e+03 2.200000e+03 2.300000e+03 2.100000e+04 ▇▁▁▁▁
latitude 0 1.00 5.568000e+01 0.02 5.562000e+01 5.567000e+01 5.568000e+01 5.570000e+01 5.573000e+01 ▁▃▇▇▁
longitude 0 1.00 1.256000e+01 0.03 1.245000e+01 1.254000e+01 1.255000e+01 1.258000e+01 1.264000e+01 ▁▂▇▅▂
accommodates 0 1.00 3.320000e+00 1.63 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.600000e+01 ▇▂▁▁▁
bathrooms 12 1.00 1.080000e+00 0.28 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 1.000000e+01 ▇▁▁▁▁
bedrooms 29 1.00 1.550000e+00 1.06 0.000000e+00 1.000000e+00 1.000000e+00 2.000000e+00 1.010000e+02 ▇▁▁▁▁
beds 103 1.00 2.040000e+00 1.44 0.000000e+00 1.000000e+00 2.000000e+00 3.000000e+00 2.500000e+01 ▇▁▁▁▁
square_feet 28130 0.01 7.218900e+02 576.10 0.000000e+00 1.200000e+02 7.640000e+02 1.076000e+03 2.799000e+03 ▇▇▃▁▁
guests_included 0 1.00 1.520000e+00 1.06 1.000000e+00 1.000000e+00 1.000000e+00 2.000000e+00 1.600000e+01 ▇▁▁▁▁
minimum_nights 0 1.00 3.850000e+00 18.07 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
maximum_nights 0 1.00 6.206700e+02 553.19 1.000000e+00 1.500000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
minimum_minimum_nights 0 1.00 3.840000e+00 18.08 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
maximum_minimum_nights 0 1.00 4.120000e+00 19.29 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
minimum_maximum_nights 0 1.00 6.669200e+02 548.00 1.000000e+00 2.000000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
maximum_maximum_nights 0 1.00 6.703800e+02 547.39 1.000000e+00 2.000000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
minimum_nights_avg_ntm 0 1.00 3.970000e+00 18.35 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
maximum_nights_avg_ntm 0 1.00 6.684100e+02 547.20 1.000000e+00 2.000000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
availability_30 0 1.00 5.870000e+00 10.42 0.000000e+00 0.000000e+00 0.000000e+00 8.000000e+00 3.000000e+01 ▇▁▁▁▂
availability_60 0 1.00 1.124000e+01 20.15 0.000000e+00 0.000000e+00 0.000000e+00 1.400000e+01 6.000000e+01 ▇▁▁▁▂
availability_90 0 1.00 1.649000e+01 29.99 0.000000e+00 0.000000e+00 0.000000e+00 1.800000e+01 9.000000e+01 ▇▁▁▁▁
availability_365 0 1.00 4.947000e+01 99.23 0.000000e+00 0.000000e+00 0.000000e+00 3.500000e+01 3.650000e+02 ▇▁▁▁▁
number_of_reviews 0 1.00 1.357000e+01 27.09 0.000000e+00 1.000000e+00 5.000000e+00 1.500000e+01 6.370000e+02 ▇▁▁▁▁
number_of_reviews_ltm 0 1.00 2.740000e+00 6.64 0.000000e+00 0.000000e+00 0.000000e+00 3.000000e+00 3.760000e+02 ▇▁▁▁▁
review_scores_rating 5447 0.81 9.516000e+01 6.83 2.000000e+01 9.300000e+01 9.700000e+01 1.000000e+02 1.000000e+02 ▁▁▁▁▇
review_scores_accuracy 5468 0.81 9.730000e+00 0.66 2.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_cleanliness 5466 0.81 9.380000e+00 0.96 2.000000e+00 9.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_checkin 5488 0.81 9.820000e+00 0.56 2.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_communication 5470 0.81 9.860000e+00 0.53 2.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_location 5491 0.81 9.600000e+00 0.68 2.000000e+00 9.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_value 5495 0.81 9.450000e+00 0.76 2.000000e+00 9.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
calculated_host_listings_count 0 1.00 4.450000e+00 28.06 1.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 2.810000e+02 ▇▁▁▁▁
calculated_host_listings_count_entire_homes 0 1.00 4.170000e+00 28.08 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 2.810000e+02 ▇▁▁▁▁
calculated_host_listings_count_private_rooms 0 1.00 2.600000e-01 0.73 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 1.200000e+01 ▇▁▁▁▁
calculated_host_listings_count_shared_rooms 0 1.00 1.000000e-02 0.33 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 1.300000e+01 ▇▁▁▁▁
reviews_per_month 4968 0.83 4.900000e-01 0.73 1.000000e-02 1.200000e-01 2.800000e-01 5.900000e-01 3.065000e+01 ▇▁▁▁▁
## Rows: 28,523
## Columns: 106
## $ id                                           <dbl> 6983, 26057, 26473, 29...
## $ listing_url                                  <chr> "https://www.airbnb.co...
## $ scrape_id                                    <dbl> 2.020063e+13, 2.020063...
## $ last_scraped                                 <date> 2020-06-28, 2020-06-2...
## $ name                                         <chr> "Copenhagen 'N Livin'"...
## $ summary                                      <chr> "Lovely apartment loca...
## $ space                                        <chr> "Beautiful and cosy ap...
## $ description                                  <chr> "Lovely apartment loca...
## $ experiences_offered                          <chr> "none", "none", "none"...
## $ neighborhood_overview                        <chr> "Nice bars and cozy ca...
## $ notes                                        <chr> NA, NA, NA, NA, "Pleas...
## $ transit                                      <chr> "Bus 66 runs to the ce...
## $ access                                       <chr> "Bedroom, living room,...
## $ interaction                                  <chr> "We are usually at wor...
## $ house_rules                                  <chr> "No smoking allowed! N...
## $ thumbnail_url                                <lgl> NA, NA, NA, NA, NA, NA...
## $ medium_url                                   <lgl> NA, NA, NA, NA, NA, NA...
## $ picture_url                                  <chr> "https://a0.muscache.c...
## $ xl_picture_url                               <lgl> NA, NA, NA, NA, NA, NA...
## $ host_id                                      <dbl> 16774, 109777, 112210,...
## $ host_url                                     <chr> "https://www.airbnb.co...
## $ host_name                                    <chr> "Simon", "Kari", "Oliv...
## $ host_since                                   <date> 2009-05-12, 2010-04-1...
## $ host_location                                <chr> "Copenhagen, Capital R...
## $ host_about                                   <chr> "I'm currently working...
## $ host_response_time                           <chr> "N/A", "N/A", "within ...
## $ host_response_rate                           <chr> "N/A", "N/A", "100%", ...
## $ host_acceptance_rate                         <chr> "33%", "19%", "100%", ...
## $ host_is_superhost                            <lgl> FALSE, FALSE, FALSE, F...
## $ host_thumbnail_url                           <chr> "https://a0.muscache.c...
## $ host_picture_url                             <chr> "https://a0.muscache.c...
## $ host_neighbourhood                           <chr> "Nørrebro", "Indre By"...
## $ host_listings_count                          <dbl> 1, 1, 4, 1, 1, 1, 3, 1...
## $ host_total_listings_count                    <dbl> 1, 1, 4, 1, 1, 1, 3, 1...
## $ host_verifications                           <chr> "['email', 'phone', 'r...
## $ host_has_profile_pic                         <lgl> TRUE, TRUE, TRUE, TRUE...
## $ host_identity_verified                       <lgl> FALSE, FALSE, TRUE, FA...
## $ street                                       <chr> "Copenhagen, Hovedstad...
## $ neighbourhood                                <chr> "Nørrebro", "Indre By"...
## $ neighbourhood_cleansed                       <chr> "Nrrebro", "Indre By",...
## $ neighbourhood_group_cleansed                 <lgl> NA, NA, NA, NA, NA, NA...
## $ city                                         <chr> "Copenhagen", "Copenha...
## $ state                                        <chr> "Hovedstaden", "Hoveds...
## $ zipcode                                      <dbl> 2200, 2100, 1210, 1650...
## $ market                                       <chr> "Copenhagen", "Copenha...
## $ smart_location                               <chr> "Copenhagen, Denmark",...
## $ country_code                                 <chr> "DK", "DK", "DK", "DK"...
## $ country                                      <chr> "Denmark", "Denmark", ...
## $ latitude                                     <dbl> 55.68798, 55.69163, 55...
## $ longitude                                    <dbl> 12.54571, 12.57459, 12...
## $ is_location_exact                            <lgl> TRUE, TRUE, TRUE, TRUE...
## $ property_type                                <chr> "Apartment", "House", ...
## $ room_type                                    <chr> "Private room", "Entir...
## $ accommodates                                 <dbl> 2, 6, 12, 2, 4, 3, 3, ...
## $ bathrooms                                    <dbl> 1.0, 1.5, 2.5, 1.0, 1....
## $ bedrooms                                     <dbl> 1, 4, 6, 1, 3, 1, 1, 2...
## $ beds                                         <dbl> 1, 4, 7, 1, 3, 3, 2, 2...
## $ bed_type                                     <chr> "Real Bed", "Real Bed"...
## $ amenities                                    <chr> "{TV,\"Cable TV\",Wifi...
## $ square_feet                                  <dbl> 97, NA, NA, NA, NA, 68...
## $ price                                        <chr> "$365.00", "$2,398.00"...
## $ weekly_price                                 <chr> NA, NA, "$17,513.00", ...
## $ monthly_price                                <chr> NA, NA, "$67,073.00", ...
## $ security_deposit                             <chr> "$0.00", "$5,000.00", ...
## $ cleaning_fee                                 <chr> "$33.00", "$1,100.00",...
## $ guests_included                              <dbl> 1, 3, 1, 1, 1, 2, 2, 2...
## $ extra_people                                 <chr> "$66.00", "$350.00", "...
## $ minimum_nights                               <dbl> 2, 3, 3, 7, 7, 2, 3, 6...
## $ maximum_nights                               <dbl> 15, 30, 31, 14, 31, 10...
## $ minimum_minimum_nights                       <dbl> 2, 3, 3, 3, 7, 2, 3, 6...
## $ maximum_minimum_nights                       <dbl> 2, 3, 3, 5, 7, 2, 3, 6...
## $ minimum_maximum_nights                       <dbl> 15, 30, 1125, 14, 1125...
## $ maximum_maximum_nights                       <dbl> 15, 30, 1125, 14, 1125...
## $ minimum_nights_avg_ntm                       <dbl> 2.0, 3.0, 3.0, 4.1, 7....
## $ maximum_nights_avg_ntm                       <dbl> 15, 30, 1125, 14, 1125...
## $ calendar_updated                             <chr> "5 months ago", "4 mon...
## $ has_availability                             <lgl> TRUE, TRUE, TRUE, TRUE...
## $ availability_30                              <dbl> 29, 28, 29, 21, 0, 0, ...
## $ availability_60                              <dbl> 59, 58, 59, 21, 0, 0, ...
## $ availability_90                              <dbl> 89, 88, 89, 21, 0, 0, ...
## $ availability_365                             <dbl> 89, 363, 172, 21, 0, 5...
## $ calendar_last_scraped                        <date> 2020-06-28, 2020-06-2...
## $ number_of_reviews                            <dbl> 168, 50, 293, 22, 90, ...
## $ number_of_reviews_ltm                        <dbl> 1, 4, 31, 2, 0, 0, 1, ...
## $ first_review                                 <date> 2009-09-04, 2013-12-0...
## $ last_review                                  <date> 2019-07-19, 2019-12-1...
## $ review_scores_rating                         <dbl> 96, 98, 91, 98, 94, 97...
## $ review_scores_accuracy                       <dbl> 10, 10, 10, 10, 10, 10...
## $ review_scores_cleanliness                    <dbl> 9, 10, 9, 10, 9, 10, 1...
## $ review_scores_checkin                        <dbl> 10, 10, 10, 10, 10, 10...
## $ review_scores_communication                  <dbl> 10, 10, 10, 10, 9, 10,...
## $ review_scores_location                       <dbl> 9, 10, 10, 10, 10, 10,...
## $ review_scores_value                          <dbl> 9, 10, 9, 10, 9, 9, 9,...
## $ requires_license                             <lgl> FALSE, FALSE, FALSE, F...
## $ license                                      <lgl> NA, NA, NA, NA, NA, NA...
## $ jurisdiction_names                           <lgl> NA, NA, NA, NA, NA, NA...
## $ instant_bookable                             <lgl> FALSE, FALSE, FALSE, F...
## $ is_business_travel_ready                     <lgl> FALSE, FALSE, FALSE, F...
## $ cancellation_policy                          <chr> "moderate", "moderate"...
## $ require_guest_profile_picture                <lgl> FALSE, FALSE, FALSE, F...
## $ require_guest_phone_verification             <lgl> FALSE, FALSE, FALSE, F...
## $ calculated_host_listings_count               <dbl> 1, 1, 1, 1, 1, 1, 1, 1...
## $ calculated_host_listings_count_entire_homes  <dbl> 0, 1, 1, 1, 1, 1, 1, 1...
## $ calculated_host_listings_count_private_rooms <dbl> 1, 0, 0, 0, 0, 0, 0, 0...
## $ calculated_host_listings_count_shared_rooms  <dbl> 0, 0, 0, 0, 0, 0, 0, 0...
## $ reviews_per_month                            <dbl> 1.28, 0.62, 2.48, 0.18...
Data summary
Name listings
Number of rows 28523
Number of columns 106
_______________________
Column type frequency:
character 45
Date 5
logical 16
numeric 40
________________________
Group variables None

Variable type: character

skim_variable n_missing complete_rate min max empty n_unique whitespace
listing_url 0 1.00 33 37 0 28523 0
name 57 1.00 1 211 0 26907 0
summary 1096 0.96 1 1000 0 26986 0
space 11390 0.60 1 1000 0 16806 0
description 515 0.98 1 1000 0 27748 0
experiences_offered 0 1.00 4 4 0 1 0
neighborhood_overview 12407 0.57 1 1000 0 15520 0
notes 20832 0.27 1 1000 0 7366 0
transit 11316 0.60 1 1000 0 16714 0
access 15751 0.45 1 1000 0 11251 0
interaction 14111 0.51 1 1000 0 13728 0
house_rules 13332 0.53 1 1000 0 13703 0
picture_url 0 1.00 81 146 0 28282 0
host_url 0 1.00 37 43 0 25745 0
host_name 12 1.00 1 34 0 6415 0
host_location 93 1.00 2 152 0 863 0
host_about 14028 0.51 1 3550 0 12478 34
host_response_time 11 1.00 3 18 0 5 0
host_response_rate 11 1.00 2 4 0 44 0
host_acceptance_rate 11 1.00 2 4 0 100 0
host_thumbnail_url 11 1.00 55 106 0 25669 0
host_picture_url 11 1.00 57 109 0 25669 0
host_neighbourhood 8007 0.72 1 21 0 56 0
host_verifications 0 1.00 2 156 0 316 0
street 0 1.00 10 61 0 528 0
neighbourhood 0 1.00 5 14 0 21 0
neighbourhood_cleansed 0 1.00 5 25 0 11 0
city 13 1.00 1 26 0 136 0
state 24042 0.16 1 25 0 170 0
market 864 0.97 6 21 0 10 0
smart_location 0 1.00 10 35 0 158 0
country_code 0 1.00 2 2 0 1 0
country 0 1.00 7 7 0 1 0
property_type 0 1.00 3 22 0 29 0
room_type 0 1.00 10 15 0 4 0
bed_type 0 1.00 5 13 0 5 0
amenities 0 1.00 2 1179 0 26634 0
price 0 1.00 5 10 0 611 0
weekly_price 25008 0.12 7 11 0 718 0
monthly_price 26971 0.05 7 11 0 476 0
security_deposit 13845 0.51 5 10 0 386 0
cleaning_fee 8968 0.69 5 9 0 430 0
extra_people 0 1.00 5 9 0 265 0
calendar_updated 0 1.00 5 13 0 82 0
cancellation_policy 0 1.00 8 27 0 4 0

Variable type: Date

skim_variable n_missing complete_rate min max median n_unique
last_scraped 0 1.00 2020-06-26 2020-06-30 2020-06-27 5
host_since 11 1.00 2008-06-27 2020-06-26 2015-06-22 3379
calendar_last_scraped 0 1.00 2020-06-26 2020-06-30 2020-06-27 5
first_review 4968 0.83 2009-09-04 2020-06-28 2017-08-07 2582
last_review 4968 0.83 2011-08-10 2020-06-28 2019-07-29 1846

Variable type: logical

skim_variable n_missing complete_rate mean count
thumbnail_url 28523 0 NaN :
medium_url 28523 0 NaN :
xl_picture_url 28523 0 NaN :
host_is_superhost 11 1 0.10 FAL: 25610, TRU: 2902
host_has_profile_pic 11 1 1.00 TRU: 28445, FAL: 67
host_identity_verified 11 1 0.38 FAL: 17790, TRU: 10722
neighbourhood_group_cleansed 28523 0 NaN :
is_location_exact 0 1 0.79 TRU: 22507, FAL: 6016
has_availability 0 1 1.00 TRU: 28523
requires_license 0 1 0.00 FAL: 28523
license 28523 0 NaN :
jurisdiction_names 28523 0 NaN :
instant_bookable 0 1 0.29 FAL: 20360, TRU: 8163
is_business_travel_ready 0 1 0.00 FAL: 28523
require_guest_profile_picture 0 1 0.01 FAL: 28379, TRU: 144
require_guest_phone_verification 0 1 0.01 FAL: 28327, TRU: 196

Variable type: numeric

skim_variable n_missing complete_rate mean sd p0 p25 p50 p75 p100 hist
id 0 1.00 2.044063e+07 12261143.29 6.983000e+03 1.008379e+07 1.950297e+07 3.043587e+07 4.395635e+07 ▇▇▇▅▆
scrape_id 0 1.00 2.020063e+13 0.00 2.020063e+13 2.020063e+13 2.020063e+13 2.020063e+13 2.020063e+13 ▁▁▇▁▁
host_id 0 1.00 6.731400e+07 76172316.22 5.130000e+02 1.281774e+07 3.604205e+07 9.463162e+07 3.519509e+08 ▇▂▁▁▁
host_listings_count 11 1.00 5.460000e+00 34.32 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 7.370000e+02 ▇▁▁▁▁
host_total_listings_count 11 1.00 5.460000e+00 34.32 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 7.370000e+02 ▇▁▁▁▁
zipcode 815 0.97 2.069760e+03 390.81 2.000000e+01 1.855750e+03 2.200000e+03 2.300000e+03 2.100000e+04 ▇▁▁▁▁
latitude 0 1.00 5.568000e+01 0.02 5.562000e+01 5.567000e+01 5.568000e+01 5.570000e+01 5.573000e+01 ▁▃▇▇▁
longitude 0 1.00 1.256000e+01 0.03 1.245000e+01 1.254000e+01 1.255000e+01 1.258000e+01 1.264000e+01 ▁▂▇▅▂
accommodates 0 1.00 3.320000e+00 1.63 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.600000e+01 ▇▂▁▁▁
bathrooms 12 1.00 1.080000e+00 0.28 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 1.000000e+01 ▇▁▁▁▁
bedrooms 29 1.00 1.550000e+00 1.06 0.000000e+00 1.000000e+00 1.000000e+00 2.000000e+00 1.010000e+02 ▇▁▁▁▁
beds 103 1.00 2.040000e+00 1.44 0.000000e+00 1.000000e+00 2.000000e+00 3.000000e+00 2.500000e+01 ▇▁▁▁▁
square_feet 28130 0.01 7.218900e+02 576.10 0.000000e+00 1.200000e+02 7.640000e+02 1.076000e+03 2.799000e+03 ▇▇▃▁▁
guests_included 0 1.00 1.520000e+00 1.06 1.000000e+00 1.000000e+00 1.000000e+00 2.000000e+00 1.600000e+01 ▇▁▁▁▁
minimum_nights 0 1.00 3.850000e+00 18.07 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
maximum_nights 0 1.00 6.206700e+02 553.19 1.000000e+00 1.500000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
minimum_minimum_nights 0 1.00 3.840000e+00 18.08 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
maximum_minimum_nights 0 1.00 4.120000e+00 19.29 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
minimum_maximum_nights 0 1.00 6.669200e+02 548.00 1.000000e+00 2.000000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
maximum_maximum_nights 0 1.00 6.703800e+02 547.39 1.000000e+00 2.000000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
minimum_nights_avg_ntm 0 1.00 3.970000e+00 18.35 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
maximum_nights_avg_ntm 0 1.00 6.684100e+02 547.20 1.000000e+00 2.000000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
availability_30 0 1.00 5.870000e+00 10.42 0.000000e+00 0.000000e+00 0.000000e+00 8.000000e+00 3.000000e+01 ▇▁▁▁▂
availability_60 0 1.00 1.124000e+01 20.15 0.000000e+00 0.000000e+00 0.000000e+00 1.400000e+01 6.000000e+01 ▇▁▁▁▂
availability_90 0 1.00 1.649000e+01 29.99 0.000000e+00 0.000000e+00 0.000000e+00 1.800000e+01 9.000000e+01 ▇▁▁▁▁
availability_365 0 1.00 4.947000e+01 99.23 0.000000e+00 0.000000e+00 0.000000e+00 3.500000e+01 3.650000e+02 ▇▁▁▁▁
number_of_reviews 0 1.00 1.357000e+01 27.09 0.000000e+00 1.000000e+00 5.000000e+00 1.500000e+01 6.370000e+02 ▇▁▁▁▁
number_of_reviews_ltm 0 1.00 2.740000e+00 6.64 0.000000e+00 0.000000e+00 0.000000e+00 3.000000e+00 3.760000e+02 ▇▁▁▁▁
review_scores_rating 5447 0.81 9.516000e+01 6.83 2.000000e+01 9.300000e+01 9.700000e+01 1.000000e+02 1.000000e+02 ▁▁▁▁▇
review_scores_accuracy 5468 0.81 9.730000e+00 0.66 2.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_cleanliness 5466 0.81 9.380000e+00 0.96 2.000000e+00 9.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_checkin 5488 0.81 9.820000e+00 0.56 2.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_communication 5470 0.81 9.860000e+00 0.53 2.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_location 5491 0.81 9.600000e+00 0.68 2.000000e+00 9.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_value 5495 0.81 9.450000e+00 0.76 2.000000e+00 9.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
calculated_host_listings_count 0 1.00 4.450000e+00 28.06 1.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 2.810000e+02 ▇▁▁▁▁
calculated_host_listings_count_entire_homes 0 1.00 4.170000e+00 28.08 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 2.810000e+02 ▇▁▁▁▁
calculated_host_listings_count_private_rooms 0 1.00 2.600000e-01 0.73 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 1.200000e+01 ▇▁▁▁▁
calculated_host_listings_count_shared_rooms 0 1.00 1.000000e-02 0.33 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 1.300000e+01 ▇▁▁▁▁
reviews_per_month 4968 0.83 4.900000e-01 0.73 1.000000e-02 1.200000e-01 2.800000e-01 5.900000e-01 3.065000e+01 ▇▁▁▁▁

From this list can be concluded that there are 28,523 values for 106 variables. there are a couple of values that contain NA, 1 of them, cleaning_fee, stands out and is one of the variables that was flagged as important in this analysis. This will be addressed in the next section. Other variables that stand out are price, cleaning_fee and extra_people. these variables are stored as character values and need to have the $-sign removed to be stored as a numeric value. Since these variables will be used further in the analyis, this also will be resolved in the next section where we clean the data and run summary statistics.

##Computing summary statistics of the variables of interest

In this section we will clean the data and run summary statistics that will be visualised in the next section. First the values stored as characters are converted to numeric values and the $-sign removed.

# Make price into a numeric variable
listings$price = as.numeric(gsub("[\\$,]", "", listings$price)) 

# Make cleaning fee into a numeric variable
listings$cleaning_fee = as.numeric(gsub("[\\$,]", "", listings$cleaning_fee)) 

# Make extra people a numeric variable
listings$extra_people = as.numeric(gsub("[\\$,]", "", listings$extra_people))

Following this, the NA’s in the cleaning_fee values will be converted to zero. Assuming the NA’s are from hosts not providing an input for cleaning fees, the NA’s should equal zero.

# Change NA cleaning fee values to 0, assuming that 0 is meant for NA
listings <- listings %>%   
  mutate(cleaning_fee = case_when(
    is.na(cleaning_fee) ~ 0, 
    TRUE ~ cleaning_fee
  ))

The property type categorical variables has too many categories to be summarised. To reduce this, the 4 most substantial categories have been specified, the remainder will be classed as other.

# Create a list of property types and the count
listings%>% 
  group_by(property_type)%>%
  summarise(count= n())%>%
  arrange(desc(count))
## `summarise()` ungrouping output (override with `.groups` argument)
property_typecount
Apartment23942
Condominium1673
House1365
Townhouse554
Serviced apartment331
Loft231
Villa190
Hostel28
Guesthouse23
Bungalow22
Guest suite22
Bed and breakfast21
Houseboat21
Boat20
Hotel20
Other14
Tiny house14
Cabin10
Boutique hotel5
Cottage4
Hut3
Aparthotel2
Barn2
Camper/RV1
Casa particular (Cuba)1
Earth house1
Island1
Lighthouse1
Tent1
# Take top 4 property_type and create a new column and assigning property_type in groups
listings <- listings %>%
  mutate(prop_type_simplified = case_when(
    property_type %in% c("Apartment","Condominium", "House","Townhouse") ~ property_type, 
    TRUE ~ "Other"
  ))

# Check if all the variables are in the correct type
skim(listings) 
Data summary
Name listings
Number of rows 28523
Number of columns 107
_______________________
Column type frequency:
character 43
Date 5
logical 16
numeric 43
________________________
Group variables None

Variable type: character

skim_variable n_missing complete_rate min max empty n_unique whitespace
listing_url 0 1.00 33 37 0 28523 0
name 57 1.00 1 211 0 26907 0
summary 1096 0.96 1 1000 0 26986 0
space 11390 0.60 1 1000 0 16806 0
description 515 0.98 1 1000 0 27748 0
experiences_offered 0 1.00 4 4 0 1 0
neighborhood_overview 12407 0.57 1 1000 0 15520 0
notes 20832 0.27 1 1000 0 7366 0
transit 11316 0.60 1 1000 0 16714 0
access 15751 0.45 1 1000 0 11251 0
interaction 14111 0.51 1 1000 0 13728 0
house_rules 13332 0.53 1 1000 0 13703 0
picture_url 0 1.00 81 146 0 28282 0
host_url 0 1.00 37 43 0 25745 0
host_name 12 1.00 1 34 0 6415 0
host_location 93 1.00 2 152 0 863 0
host_about 14028 0.51 1 3550 0 12478 34
host_response_time 11 1.00 3 18 0 5 0
host_response_rate 11 1.00 2 4 0 44 0
host_acceptance_rate 11 1.00 2 4 0 100 0
host_thumbnail_url 11 1.00 55 106 0 25669 0
host_picture_url 11 1.00 57 109 0 25669 0
host_neighbourhood 8007 0.72 1 21 0 56 0
host_verifications 0 1.00 2 156 0 316 0
street 0 1.00 10 61 0 528 0
neighbourhood 0 1.00 5 14 0 21 0
neighbourhood_cleansed 0 1.00 5 25 0 11 0
city 13 1.00 1 26 0 136 0
state 24042 0.16 1 25 0 170 0
market 864 0.97 6 21 0 10 0
smart_location 0 1.00 10 35 0 158 0
country_code 0 1.00 2 2 0 1 0
country 0 1.00 7 7 0 1 0
property_type 0 1.00 3 22 0 29 0
room_type 0 1.00 10 15 0 4 0
bed_type 0 1.00 5 13 0 5 0
amenities 0 1.00 2 1179 0 26634 0
weekly_price 25008 0.12 7 11 0 718 0
monthly_price 26971 0.05 7 11 0 476 0
security_deposit 13845 0.51 5 10 0 386 0
calendar_updated 0 1.00 5 13 0 82 0
cancellation_policy 0 1.00 8 27 0 4 0
prop_type_simplified 0 1.00 5 11 0 5 0

Variable type: Date

skim_variable n_missing complete_rate min max median n_unique
last_scraped 0 1.00 2020-06-26 2020-06-30 2020-06-27 5
host_since 11 1.00 2008-06-27 2020-06-26 2015-06-22 3379
calendar_last_scraped 0 1.00 2020-06-26 2020-06-30 2020-06-27 5
first_review 4968 0.83 2009-09-04 2020-06-28 2017-08-07 2582
last_review 4968 0.83 2011-08-10 2020-06-28 2019-07-29 1846

Variable type: logical

skim_variable n_missing complete_rate mean count
thumbnail_url 28523 0 NaN :
medium_url 28523 0 NaN :
xl_picture_url 28523 0 NaN :
host_is_superhost 11 1 0.10 FAL: 25610, TRU: 2902
host_has_profile_pic 11 1 1.00 TRU: 28445, FAL: 67
host_identity_verified 11 1 0.38 FAL: 17790, TRU: 10722
neighbourhood_group_cleansed 28523 0 NaN :
is_location_exact 0 1 0.79 TRU: 22507, FAL: 6016
has_availability 0 1 1.00 TRU: 28523
requires_license 0 1 0.00 FAL: 28523
license 28523 0 NaN :
jurisdiction_names 28523 0 NaN :
instant_bookable 0 1 0.29 FAL: 20360, TRU: 8163
is_business_travel_ready 0 1 0.00 FAL: 28523
require_guest_profile_picture 0 1 0.01 FAL: 28379, TRU: 144
require_guest_phone_verification 0 1 0.01 FAL: 28327, TRU: 196

Variable type: numeric

skim_variable n_missing complete_rate mean sd p0 p25 p50 p75 p100 hist
id 0 1.00 2.044063e+07 12261143.29 6.983000e+03 1.008379e+07 1.950297e+07 3.043587e+07 4.395635e+07 ▇▇▇▅▆
scrape_id 0 1.00 2.020063e+13 0.00 2.020063e+13 2.020063e+13 2.020063e+13 2.020063e+13 2.020063e+13 ▁▁▇▁▁
host_id 0 1.00 6.731400e+07 76172316.22 5.130000e+02 1.281774e+07 3.604205e+07 9.463162e+07 3.519509e+08 ▇▂▁▁▁
host_listings_count 11 1.00 5.460000e+00 34.32 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 7.370000e+02 ▇▁▁▁▁
host_total_listings_count 11 1.00 5.460000e+00 34.32 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 7.370000e+02 ▇▁▁▁▁
zipcode 815 0.97 2.069760e+03 390.81 2.000000e+01 1.855750e+03 2.200000e+03 2.300000e+03 2.100000e+04 ▇▁▁▁▁
latitude 0 1.00 5.568000e+01 0.02 5.562000e+01 5.567000e+01 5.568000e+01 5.570000e+01 5.573000e+01 ▁▃▇▇▁
longitude 0 1.00 1.256000e+01 0.03 1.245000e+01 1.254000e+01 1.255000e+01 1.258000e+01 1.264000e+01 ▁▂▇▅▂
accommodates 0 1.00 3.320000e+00 1.63 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.600000e+01 ▇▂▁▁▁
bathrooms 12 1.00 1.080000e+00 0.28 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 1.000000e+01 ▇▁▁▁▁
bedrooms 29 1.00 1.550000e+00 1.06 0.000000e+00 1.000000e+00 1.000000e+00 2.000000e+00 1.010000e+02 ▇▁▁▁▁
beds 103 1.00 2.040000e+00 1.44 0.000000e+00 1.000000e+00 2.000000e+00 3.000000e+00 2.500000e+01 ▇▁▁▁▁
square_feet 28130 0.01 7.218900e+02 576.10 0.000000e+00 1.200000e+02 7.640000e+02 1.076000e+03 2.799000e+03 ▇▇▃▁▁
price 0 1.00 8.491900e+02 1066.81 0.000000e+00 4.980000e+02 6.980000e+02 9.960000e+02 6.917500e+04 ▇▁▁▁▁
cleaning_fee 0 1.00 2.103900e+02 249.69 0.000000e+00 0.000000e+00 1.500000e+02 3.000000e+02 4.000000e+03 ▇▁▁▁▁
guests_included 0 1.00 1.520000e+00 1.06 1.000000e+00 1.000000e+00 1.000000e+00 2.000000e+00 1.600000e+01 ▇▁▁▁▁
extra_people 0 1.00 6.388000e+01 126.23 0.000000e+00 0.000000e+00 0.000000e+00 1.000000e+02 2.024000e+03 ▇▁▁▁▁
minimum_nights 0 1.00 3.850000e+00 18.07 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
maximum_nights 0 1.00 6.206700e+02 553.19 1.000000e+00 1.500000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
minimum_minimum_nights 0 1.00 3.840000e+00 18.08 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
maximum_minimum_nights 0 1.00 4.120000e+00 19.29 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
minimum_maximum_nights 0 1.00 6.669200e+02 548.00 1.000000e+00 2.000000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
maximum_maximum_nights 0 1.00 6.703800e+02 547.39 1.000000e+00 2.000000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
minimum_nights_avg_ntm 0 1.00 3.970000e+00 18.35 1.000000e+00 2.000000e+00 3.000000e+00 4.000000e+00 1.100000e+03 ▇▁▁▁▁
maximum_nights_avg_ntm 0 1.00 6.684100e+02 547.20 1.000000e+00 2.000000e+01 1.125000e+03 1.125000e+03 9.999000e+03 ▇▁▁▁▁
availability_30 0 1.00 5.870000e+00 10.42 0.000000e+00 0.000000e+00 0.000000e+00 8.000000e+00 3.000000e+01 ▇▁▁▁▂
availability_60 0 1.00 1.124000e+01 20.15 0.000000e+00 0.000000e+00 0.000000e+00 1.400000e+01 6.000000e+01 ▇▁▁▁▂
availability_90 0 1.00 1.649000e+01 29.99 0.000000e+00 0.000000e+00 0.000000e+00 1.800000e+01 9.000000e+01 ▇▁▁▁▁
availability_365 0 1.00 4.947000e+01 99.23 0.000000e+00 0.000000e+00 0.000000e+00 3.500000e+01 3.650000e+02 ▇▁▁▁▁
number_of_reviews 0 1.00 1.357000e+01 27.09 0.000000e+00 1.000000e+00 5.000000e+00 1.500000e+01 6.370000e+02 ▇▁▁▁▁
number_of_reviews_ltm 0 1.00 2.740000e+00 6.64 0.000000e+00 0.000000e+00 0.000000e+00 3.000000e+00 3.760000e+02 ▇▁▁▁▁
review_scores_rating 5447 0.81 9.516000e+01 6.83 2.000000e+01 9.300000e+01 9.700000e+01 1.000000e+02 1.000000e+02 ▁▁▁▁▇
review_scores_accuracy 5468 0.81 9.730000e+00 0.66 2.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_cleanliness 5466 0.81 9.380000e+00 0.96 2.000000e+00 9.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_checkin 5488 0.81 9.820000e+00 0.56 2.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_communication 5470 0.81 9.860000e+00 0.53 2.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_location 5491 0.81 9.600000e+00 0.68 2.000000e+00 9.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
review_scores_value 5495 0.81 9.450000e+00 0.76 2.000000e+00 9.000000e+00 1.000000e+01 1.000000e+01 1.000000e+01 ▁▁▁▁▇
calculated_host_listings_count 0 1.00 4.450000e+00 28.06 1.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 2.810000e+02 ▇▁▁▁▁
calculated_host_listings_count_entire_homes 0 1.00 4.170000e+00 28.08 0.000000e+00 1.000000e+00 1.000000e+00 1.000000e+00 2.810000e+02 ▇▁▁▁▁
calculated_host_listings_count_private_rooms 0 1.00 2.600000e-01 0.73 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 1.200000e+01 ▇▁▁▁▁
calculated_host_listings_count_shared_rooms 0 1.00 1.000000e-02 0.33 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 1.300000e+01 ▇▁▁▁▁
reviews_per_month 4968 0.83 4.900000e-01 0.73 1.000000e-02 1.200000e-01 2.800000e-01 5.900000e-01 3.065000e+01 ▇▁▁▁▁

To only have a list of variables that will be used in the analysis, redundant variables are filtered out. As the analysis focuses on short holiday stays, the long stay listings need to be removed from the list. By looking at the minimum nights on the listings, it can be determined if these addresses are viable for short stays.

## `summarise()` ungrouping output (override with `.groups` argument)
minimum_nightscount
2      8500
3      6479
1      5444
4      3117
5      2346
7      997
6      702
14      198
10      170
30      136
8      52
20      49
15      35
21      33
60      23
9      22
12      21
90      21
13      20
25      16
28      14
50      14
100      8
31      7
11      6
23      6
29      6
45      5
16      4
19      4
200      4
1e+03      4
17      3
40      3
70      3
80      3
120      3
18      2
22      2
24      2
26      2
27      2
49      2
85      2
160      2
180      2
360      2
365      2
999      2
34      1
35      1
39      1
42      1
43      1
48      1
56      1
59      1
61      1
66      1
75      1
89      1
92      1
102      1
107      1
150      1
270      1
300      1
430      1
500      1
1.1e+031

In this summary it can be seen that after 5 minimum days the numbers of listing drop significantly.The majority of listings are within the 1 to 4 minimum days stay. Therefore this will give a good indication of the listings intended for short, holiday, stays. In the next section the data is filtered to only feature a minimum of 4 nights or less. Also, the variables that will be used in the analysis are selected, so to only have relevant variables left to make the analysis more concise and clear.

Let’s have a look at the data.

# Check if all the variables are in the correct type
skim(listings_clean) 
Data summary
Name listings_clean
Number of rows 28523
Number of columns 20
_______________________
Column type frequency:
character 5
logical 2
numeric 13
________________________
Group variables None

Variable type: character

skim_variable n_missing complete_rate min max empty n_unique whitespace
listing_url 0 1 33 37 0 28523 0
prop_type_simplified 0 1 5 11 0 5 0
room_type 0 1 10 15 0 4 0
neighbourhood_cleansed 0 1 5 25 0 11 0
cancellation_policy 0 1 8 27 0 4 0

Variable type: logical

skim_variable n_missing complete_rate mean count
host_is_superhost 11 1 0.10 FAL: 25610, TRU: 2902
is_location_exact 0 1 0.79 TRU: 22507, FAL: 6016

Variable type: numeric

skim_variable n_missing complete_rate mean sd p0 p25 p50 p75 p100 hist
id 0 1.00 20440633.59 12261143.29 6983.00 10083785.00 19502966.00 30435871.00 43956346.00 ▇▇▇▅▆
price 0 1.00 849.19 1066.81 0.00 498.00 698.00 996.00 69175.00 ▇▁▁▁▁
guests_included 0 1.00 1.52 1.06 1.00 1.00 1.00 2.00 16.00 ▇▁▁▁▁
cleaning_fee 0 1.00 210.39 249.69 0.00 0.00 150.00 300.00 4000.00 ▇▁▁▁▁
extra_people 0 1.00 63.88 126.23 0.00 0.00 0.00 100.00 2024.00 ▇▁▁▁▁
number_of_reviews 0 1.00 13.57 27.09 0.00 1.00 5.00 15.00 637.00 ▇▁▁▁▁
review_scores_rating 5447 0.81 95.16 6.83 20.00 93.00 97.00 100.00 100.00 ▁▁▁▁▇
bathrooms 12 1.00 1.08 0.28 0.00 1.00 1.00 1.00 10.00 ▇▁▁▁▁
bedrooms 29 1.00 1.55 1.06 0.00 1.00 1.00 2.00 101.00 ▇▁▁▁▁
beds 103 1.00 2.04 1.44 0.00 1.00 2.00 3.00 25.00 ▇▁▁▁▁
accommodates 0 1.00 3.32 1.63 1.00 2.00 3.00 4.00 16.00 ▇▂▁▁▁
longitude 0 1.00 12.56 0.03 12.45 12.54 12.55 12.58 12.64 ▁▂▇▅▂
latitude 0 1.00 55.68 0.02 55.62 55.67 55.68 55.70 55.73 ▁▃▇▇▁

##Visualisations

Now that the data is clean, a selection of useful data has been made, and filtered to only feature our criteria for a short stay holiday listing, visualisations of data can be made. This lays the foundation of any correlations and questions the regression model will have to explain and answer.

###location

In order to get an idea on the concentration of apartment listings in the area of Copenhagen, we plotted a map showing the number of flat available for rent for 4 nights or less. We used clusters instead of point to make the map more readable and to get a better idea of the number of listings in each area.

# Take the filtered listings with a min of 4 nights and create a map of the apartments in Copenhagen
listings_filtered_4nights %>% 
  leaflet() %>% 
  addProviderTiles("OpenStreetMap.Mapnik") %>% 
  addCircleMarkers(lng = ~longitude, 
                   lat = ~latitude, 
                   radius = 1,
                   fillOpacity = 0.4, 
                   popup = ~listing_url,
                   label = ~property_type,
                   #To get a better overview of the number and location of apartments in Copenhagen, a clustered map was chosen instead of the original point mapping
                   clusterOptions = markerClusterOptions()
                   )

The map shows the number of available flats are located in the city center. The more we get away from the center the fewer the number of flats available.

To gauge the price difference in each area in Copenhagen, we plotted a heatmap showing the more expensive areas in a brighter red colour. Also we plotted a bar chart to get an idea of the median price for each area. The reason for using median over mean is because the listings in Copenhagen have very extreme values and they skew the mean too much for certain areas.

#maps price to seven colors using quantiles
qpal <- colorQuantile("Reds", listings_filtered_4nights$price, n = 7)

listings_filtered_4nights %>% 
leaflet() %>% 
  addProviderTiles("OpenStreetMap.Mapnik") %>% 
  addCircleMarkers(lng = ~longitude, 
                   lat = ~latitude, 
                   radius = 1,
                   fillOpacity = 0.4, 
                   popup = ~listing_url,
                   label = ~property_type,
                   color = ~qpal(price))

We can conclude that the harbour area in Copehagen has the most expensive listings. Therefore we suspect that location will have a high coefficient when we will be running te regression models.

#Calculated median price per night for each neighborhood
median_per_neighborhood <- listings_filtered_4nights %>% 
  group_by(neighbourhood_cleansed) %>% 
  summarise(median_price = median(price))
#Price per night for each neighborhood
median_per_neighborhood %>% 
  ggplot(aes(
    x = reorder(neighbourhood_cleansed, median_price),
    y = median_price
  )) +
  geom_col() +
  labs(
    title = "Median price per night per neighborhood",
    x = "",
    y = "Median price per neighborhood",
    caption = "Source: AirBnB"
  ) +
  coord_flip() +
  NULL

The Indre By area in Copenhagen is the central harbour area and is the most expensive area for AirBnB prices. This confirms that the neighborhood variable will have a significant impact on the price variable.

###accommodation type

Next up, we have plotted a number of bar charts to display the price relationship with the types of accommodation.

Median price per night per property type: The histogram showed that among all the property types, the lowest median price per night is allocated to the appartments

Median price per room type: The histogram showed that hotel rooms are generally more expensive than the other types of rooms available.

# Calculate median price per night for each room type
median_per_proptype <- listings_filtered_4nights %>% 
  group_by(prop_type_simplified) %>% 
  summarise(median_price = median(price))

# Plot a bar chart with median price per night for each property type
median_per_proptype %>% 
  ggplot(aes(
    x = reorder(prop_type_simplified, desc(median_price)),
    y = median_price
  )) +
  geom_col() +
  labs(
    title = "Median price per night per property type",
    x = "",
    y = "Median price per night",
    caption = "Source: AirBnB"
  ) +
  NULL

# Calculate median price per night for each room type
median_per_roomtype <- listings_filtered_4nights %>% 
  group_by(room_type) %>% 
  summarise(median_price = median(price))

# Price per night for each room type
median_per_roomtype %>% 
  ggplot(aes(
    x = reorder(room_type, desc(median_price)),
    y = median_price
  )) +
  geom_col() +
  labs(
    title = "Median price per night per room type",
    x = "",
    y = "Median price per night",
    caption = "Source: AirBnB"
  ) +
  NULL

From this we can conclude that both room type and property type have an influence on the price.

###rating

Following from this, we wanted to know what influence rating has on the price. For this we used both data on the review scores and whether the listing is posted by a superhost.

#Plotted a density graph to display the relationship with price in being a superhost
listings_clean %>%
  ggplot(aes(
    x = log(price),
    #colour the graph by being a superhost or not and filtering out the NA values
    colour = !is.na(host_is_superhost)
  )) +
  geom_density() +
    labs(
      title = "Density plot for prices on whether superhost is true/false",
      x = "price per night (log)",
      y = "density",
      caption = "Source: AirBnB"
    ) +
  NULL
## Warning: Removed 2 rows containing non-finite values (stat_density).

#Plotted a histogram to display the distribution of ratings and to show if this is affected by being a superhost
listings_clean %>%
  #Filtered out the NA's in superhost
  filter(!is.na(host_is_superhost)) %>% 
  ggplot(aes(
    x = review_scores_rating,
    fill = host_is_superhost
  )) +
  # set the binwidth to 1 to match the scoring bins in the original data
  geom_histogram(binwidth = 1) +
      labs(
      title = "Histogram for review score distribution with (non)superhosts",
      x = "Review scores",
      y = "count",
      caption = "Source: AirBnB"
    ) +
  NULL
## Warning: Removed 5442 rows containing non-finite values (stat_bin).

#plotted a scatter graph showing the relationship between review score and price
listings_clean %>%
  ggplot(aes(
    x = review_scores_rating,
    y = price
  )) +
  geom_point() +
  #Applied a logscale to make the relationship more visible
  scale_y_log10() +
  #Applied a linear line to display any relationship in with price with a higher review score
  geom_smooth(method = lm) +
      labs(
      title = "Scatter plot showing relationship between review scores and price",
      x = "Review scores",
      y = "price per night (log)",
      caption = "Source: AirBnB"
    ) +
  
  NULL
## Warning: Transformation introduced infinite values in continuous y-axis
## Warning: Transformation introduced infinite values in continuous y-axis
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 5448 rows containing non-finite values (stat_smooth).
## Warning: Removed 5447 rows containing missing values (geom_point).

From this we can conclude that being a superhost does have an influence on the price. People would prefer a superhost, so it seems logical that the average price for a superhost is higher than a listing under a normal host. The ratings however don’t seem to be related to being a superhost. In fact the perfect scores are more among non-superhosts. This could be because of the higher expectations set by booking via a superhost, this could make guests more critical when writing a review. finally, there does not seem to be a strong correlation with a rating score and the price. Hosts will not alter their prices to their review scores.

###GGpairs

To display a comprehensive overview of the correlation between variables and the price we plotted a GGpairs plot. Using all the selected variables.

# Display the correlation between four important variables

listings_clean %>%
  select(price, room_type, prop_type_simplified, number_of_reviews, review_scores_rating, host_is_superhost) %>% 
  ggpairs(cardinality_threshold=NULL)
## Warning in ggally_statistic(data = data, mapping = mapping, na.rm = na.rm, :
## Removed 5447 rows containing missing values
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 5447 rows containing non-finite values (stat_boxplot).
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 5447 rows containing non-finite values (stat_boxplot).
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning in ggally_statistic(data = data, mapping = mapping, na.rm = na.rm, :
## Removed 5447 rows containing missing values
## Warning: Removed 5447 rows containing missing values (geom_point).
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 5447 rows containing non-finite values (stat_bin).
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 5447 rows containing non-finite values (stat_bin).

## Warning: Removed 5447 rows containing missing values (geom_point).
## Warning: Removed 5447 rows containing non-finite values (stat_density).
## Warning: Removed 5447 rows containing non-finite values (stat_boxplot).
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 5447 rows containing non-finite values (stat_bin).

1 REGRESSION

1.1 Basic explanatory variables

# Create new variable for 4 nights using price, guests_included, cleaning_fee and extra_people
listings_new <- listings_clean %>%
  mutate(price_4_nights = ifelse(
    guests_included <= 1,
    (price + extra_people) * 4 + cleaning_fee,
    (price) * 4 + cleaning_fee
  ))
# Density plots for price_4_nights
density.default(listings_new$price_4_nights)
## 
## Call:
##  density.default(x = listings_new$price_4_nights)
## 
## Data: listings_new$price_4_nights (28523 obs.);  Bandwidth 'bw' = 173
## 
##        x                  y            
##  Min.   :  -518.9   Min.   :0.000e+00  
##  1st Qu.: 68915.5   1st Qu.:0.000e+00  
##  Median :138350.0   Median :0.000e+00  
##  Mean   :138350.0   Mean   :4.589e-06  
##  3rd Qu.:207784.5   3rd Qu.:2.000e-10  
##  Max.   :277218.9   Max.   :3.565e-04
# Calculate the most frequently occurring price (mode) for 4 nights 
max_p4n <- density(listings_new$price_4_nights)$x[which.max(density(listings_new$price_4_nights)$y)]
max_p4n
## [1] 2742.17
# Plot density of price_4_nights
ggplot(
  listings_new,
  aes(x = price_4_nights)) +
  geom_density() +
  # Plot vertical line to show maximum value
  geom_vline(xintercept =  max_p4n)  

# Plot density of log(price_4_nights)
ggplot(listings_new, aes(x = log(price_4_nights))) +
  geom_density()
## Warning: Removed 1 rows containing non-finite values (stat_density).

Answer: we should use variable log(price_4_nights). Looking at the density plots of price_4_nights and log(price_4_nights), we can see clearly that log(price_4_nights) is more close to a normal distribution, while most values in price_4_nights are cramped within a very small range.

###Model 1

Fitting a regression model called model1 with the following explanatory variables: prop_type_simplified, number_of_reviews, and review_scores_rating

# Create a new dataset with the new variable of log(price_4_nights)
listings_log <- listings_new %>%
  mutate(price_4_nights_log = log10(price_4_nights)) 
  
# Create model1 of price_4_nights with explanatory variables prop_type_simplified, number_of_reviews and review_scores_ratings
model1 <- lm(price_4_nights_log ~
             prop_type_simplified +
             number_of_reviews +
             review_scores_rating,
             data = listings_log
             )

model1 %>% tidy(conf.int=TRUE)
termestimatestd.errorstatisticp.valueconf.lowconf.high
(Intercept)3.24    0.0198  164   0       3.21    3.28    
prop_type_simplifiedCondominium0.033   0.00576 5.749.66e-090.0218  0.0443  
prop_type_simplifiedHouse0.119   0.00693 17.1 4.35e-650.105   0.132   
prop_type_simplifiedOther0.178   0.00872 20.4 1.7e-91 0.161   0.195   
prop_type_simplifiedTownhouse0.177   0.0102  17.4 2.2e-67 0.157   0.197   
number_of_reviews0.0001884.84e-053.890.0001019.34e-050.000283
review_scores_rating0.00235 0.00020711.3 9.89e-300.00194 0.00276 
model1 %>% glance()
r.squaredadj.r.squaredsigmastatisticp.valuedflogLikAICBICdeviancedf.residualnobs
0.0460.04570.2151853.13e-23162.77e+03-5.53e+03-5.46e+031.06e+032306923076
# Check residuals
autoplot(model1)
## Warning: `arrange_()` is deprecated as of dplyr 0.7.0.
## Please use `arrange()` instead.
## See vignette('programming') for more help
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_warnings()` to see where this warning was generated.

Interpretation of review_scores_rating predictor:

Ratings (review_scores_rating) is a significant predictor. Controlling for other variables, every 1 point increase in rating is associated with $ 0.002 increase in log10(price_4_nights).

Interpretation of prop_type_simplified predictor:

Property type (prop_type_simplified) is a significant predictor. Controlling for other variables, switching property type from apartment to condomunium would result in 0.034 increase in log10(price_4_nights). Similarly, switching property type from apartment to house would result in 0.11 increase in log10(price_4_nights); switching property type from apartment to townhouse would result in 0.17 increase in log10(price_4_nights); switching property type from apartment to property types other than the aforementioned 3 types would result in an average of 0.18 increase in log10(price_4_nights).

Model 1: 4%

1.1.1 Model 2

We want to determine if room_type is a significant predictor of the cost for 4 nights, given everything else in the model.

# Create model2 by adding room_type to model1
model2 <- lm(price_4_nights_log ~
             prop_type_simplified +
             number_of_reviews +
             review_scores_rating +
             room_type, 
             data = listings_log
             )

model2 %>% tidy(conf.int=TRUE)
termestimatestd.errorstatisticp.valueconf.lowconf.high
(Intercept)3.36    0.0177  189   0       3.32    3.39    
prop_type_simplifiedCondominium0.0168  0.00513 3.270.00107 0.00674 0.0269  
prop_type_simplifiedHouse0.126   0.00618 20.4 1.8e-91 0.114   0.138   
prop_type_simplifiedOther0.168   0.00797 21.1 1.14e-970.152   0.184   
prop_type_simplifiedTownhouse0.166   0.00905 18.3 1.98e-740.148   0.184   
number_of_reviews0.0006684.36e-0515.3 1.33e-520.0005820.000753
review_scores_rating0.00154 0.0001858.338.6e-17 0.00118 0.00191 
room_typeHotel room0.112   0.0342  3.280.00104 0.0452  0.179   
room_typePrivate room-0.271   0.00355 -76.3 0       -0.278   -0.264   
room_typeShared room-0.362   0.0246  -14.7 5.51e-49-0.41    -0.314   
model2 %>% glance()
r.squaredadj.r.squaredsigmastatisticp.valuedflogLikAICBICdeviancedf.residualnobs
0.2430.2430.191823095.44e+03-1.09e+04-1.08e+048432306623076
# Check residuals
autoplot(model2)

Interpretation of room_type predictor:

The result of model2 regression shows that rooms_type is a significant predictor. Controlling for other variables, switching room type from entire house to hotel room would result in 0.11 increase in log10(price_4_nights). Nevertheless, switching from entire house to private room would result in 0.27 drop in log10(price_4_nights); switching from entire house to shared room would result in 0.38 drop in log10(price_4_nights).

Model 2: 24%

1.2 Exploring additional explanatory variables

1.2.1 Model 3

Are the number of bathrooms, bedrooms, beds, or size of the house (accomodates) significant predictors of price_4_nights?

# Create model3a by adding bathrooms, bedrooms, beds, accommodates to model2 
model3a<-lm(price_4_nights_log ~
            prop_type_simplified +
             number_of_reviews +
             review_scores_rating +
             room_type + 
             bathrooms +
             bedrooms +
             beds + 
             accommodates, 
            data = listings_log)

model3a %>% 
  tidy(conf.int=TRUE)
termestimatestd.errorstatisticp.valueconf.lowconf.high
(Intercept)3.08    0.0163  189    0        3.05    3.12    
prop_type_simplifiedCondominium0.0105  0.00452 2.31 0.0207   0.0016  0.0193  
prop_type_simplifiedHouse-0.0476  0.00594 -8.02 1.08e-15 -0.0593  -0.036   
prop_type_simplifiedOther0.0906  0.00709 12.8  2.97e-37 0.0767  0.105   
prop_type_simplifiedTownhouse0.00279 0.00835 0.3340.738    -0.0136  0.0191  
number_of_reviews0.0005963.85e-0515.5  7.78e-54 0.0005210.000672
review_scores_rating0.00166 0.00016410.2  3.24e-24 0.00134 0.00199 
room_typeHotel room0.223   0.0302  7.38 1.65e-13 0.164   0.282   
room_typePrivate room-0.18    0.00338 -53.2  0        -0.187   -0.174   
room_typeShared room-0.261   0.0217  -12    3e-33        -0.303   -0.218   
bathrooms0.0581  0.0047  12.4  4.54e-35 0.0489  0.0673  
bedrooms0.0501  0.00224 22.3  1.83e-1090.0457  0.0545  
beds-0.00273 0.00125 -2.19 0.0283   -0.00517 -0.00029 
accommodates0.0389  0.00131 29.6  2.69e-1890.0363  0.0415  
model3a %>%
  glance()
r.squaredadj.r.squaredsigmastatisticp.valuedflogLikAICBICdeviancedf.residualnobs
0.4120.4120.1681.24e+030138.36e+03-1.67e+04-1.66e+046532302123035
# Test VIF
car::vif(model3a)
##                          GVIF Df GVIF^(1/(2*Df))
## prop_type_simplified 1.373951  4        1.040510
## number_of_reviews    1.029840  1        1.014810
## review_scores_rating 1.012554  1        1.006257
## room_type            1.272593  3        1.040994
## bathrooms            1.332643  1        1.154401
## bedrooms             3.071499  1        1.752569
## beds                 2.550304  1        1.596967
## accommodates         3.628682  1        1.904910
# Check residuals
autoplot(model3a)

Interpretation of bathrooms, bedrooms, beds, and size of the house (accommodates) predictors:

The number of bathrooms, bedrooms and size of the house (accommodates) are significant predictors of log10(price_4_nights) and are all positively related with price_4_nights, while number of beds is not a significant predictor. Coefficients show that each additional bathroom is associated with 0.06 increase in log10(price_4_nights); each additional bedroom is associated with 0.05 increase in log10(price_4_nights). There might be a problem with multi-collinearity since intuitively the number of bathrooms and bedrooms should have a positive relationship with size of the house. A further analysis on VIF shows that size of the house has slight correlation with other predictors but is within an acceptable range.

# Create model3 by removing beds from model3a 
model3<-lm(price_4_nights_log ~
           prop_type_simplified +
           number_of_reviews +
           review_scores_rating +
           room_type + 
           bathrooms +
           bedrooms +
           accommodates, 
           data = listings_log
           )

model3 %>% tidy(conf.int=TRUE)
termestimatestd.errorstatisticp.valueconf.lowconf.high
(Intercept)3.08    0.0163  189    0        3.05    3.12    
prop_type_simplifiedCondominium0.0106  0.00452 2.34 0.0195   0.0017  0.0194  
prop_type_simplifiedHouse-0.0481  0.00593 -8.11 5.24e-16 -0.0598  -0.0365  
prop_type_simplifiedOther0.0905  0.00709 12.7  4.17e-37 0.0766  0.104   
prop_type_simplifiedTownhouse0.00227 0.00834 0.2730.785    -0.0141  0.0186  
number_of_reviews0.0005983.85e-0515.5  3.5e-54  0.0005230.000674
review_scores_rating0.00167 0.00016410.2  1.7e-24  0.00135 0.00199 
room_typeHotel room0.223   0.0302  7.39 1.58e-13 0.164   0.282   
room_typePrivate room-0.181   0.00338 -53.5  0        -0.187   -0.174   
room_typeShared room-0.262   0.0217  -12.1  1.91e-33 -0.304   -0.219   
bathrooms0.0581  0.0047  12.4  4.75e-35 0.0489  0.0673  
bedrooms0.0488  0.00216 22.6  1.72e-1110.0446  0.0531  
accommodates0.0376  0.00118 31.9  1.11e-2180.0353  0.0399  
model3 %>% glance()
r.squaredadj.r.squaredsigmastatisticp.valuedflogLikAICBICdeviancedf.residualnobs
0.4130.4120.1681.35e+030128.36e+03-1.67e+04-1.66e+046542304723060
# Test VIF
car::vif(model3)
##                          GVIF Df GVIF^(1/(2*Df))
## prop_type_simplified 1.370590  4        1.040192
## number_of_reviews    1.029562  1        1.014673
## review_scores_rating 1.011882  1        1.005924
## room_type            1.271896  3        1.040899
## bathrooms            1.332684  1        1.154419
## bedrooms             2.862720  1        1.691957
## accommodates         2.929976  1        1.711717
# Check residuals
autoplot(model3)

Model 3: 41%

1.2.2 Model 4

Do superhosts command a pricing premium, after controlling for other variables?

# Create model4 by adding host_is_superhost to model3
model4<-lm(price_4_nights_log ~
             prop_type_simplified +
             number_of_reviews +
             review_scores_rating +
             room_type + 
             bathrooms +
             bedrooms +
             accommodates +
             host_is_superhost,
            data = listings_log
           )
model4 %>% tidy(conf.int=TRUE)
termestimatestd.errorstatisticp.valueconf.lowconf.high
(Intercept)3.1     0.0164  189   0        3.07    3.13    
prop_type_simplifiedCondominium0.00988 0.00452 2.190.0287   0.00103 0.0187  
prop_type_simplifiedHouse-0.0478  0.00592 -8.077.47e-16 -0.0594  -0.0362  
prop_type_simplifiedOther0.089   0.00708 12.6 4.07e-36 0.0751  0.103   
prop_type_simplifiedTownhouse0.00141 0.00833 0.170.865    -0.0149  0.0177  
number_of_reviews0.0004844.01e-0512.1 2.24e-33 0.0004050.000562
review_scores_rating0.00145 0.0001658.811.28e-18 0.00113 0.00178 
room_typeHotel room0.226   0.0301  7.496.91e-14 0.167   0.285   
room_typePrivate room-0.183   0.00338 -54.1 0        -0.189   -0.176   
room_typeShared room-0.261   0.0216  -12.1 2.06e-33 -0.304   -0.219   
bathrooms0.0582  0.00469 12.4 3.14e-35 0.049   0.0673  
bedrooms0.0491  0.00216 22.7 2.89e-1130.0449  0.0534  
accommodates0.0374  0.00118 31.8 9.41e-2170.0351  0.0397  
host_is_superhostTRUE0.0354  0.00358 9.885.54e-23 0.0284  0.0424  
model4 %>% glance()
r.squaredadj.r.squaredsigmastatisticp.valuedflogLikAICBICdeviancedf.residualnobs
0.4150.4150.1681.26e+030138.4e+03-1.68e+04-1.67e+046512304023054
# Test VIF
car::vif(model4)
##                          GVIF Df GVIF^(1/(2*Df))
## prop_type_simplified 1.371707  4        1.040298
## number_of_reviews    1.122623  1        1.059539
## review_scores_rating 1.028858  1        1.014326
## room_type            1.277660  3        1.041684
## bathrooms            1.332709  1        1.154430
## bedrooms             2.863006  1        1.692042
## accommodates         2.930492  1        1.711868
## host_is_superhost    1.122152  1        1.059317
# Check residuals
autoplot(model4)

Interpretation of superhost predictor:

Since the p-value for the estimate of the superhost coefficient is significant (with a p-value of 0.36 and a t-statistic of 0.9), it seems that superhosts do command a price premium from their guests in Copenhagen. Compared to non-superhost, being a superhost is associated with 0.03 increase in log10(price_4_nights).

# Create model4b by adding host_is_superhost to model4 and create an interaction variable 
model4b<-lm(price_4_nights_log ~
              prop_type_simplified +
             number_of_reviews +
             review_scores_rating +
             room_type + 
             bathrooms +
             bedrooms +
             accommodates +
             host_is_superhost*review_scores_rating,
            data = listings_log
            )
model4b %>% tidy(conf.int=TRUE)
termestimatestd.errorstatisticp.valueconf.lowconf.high
(Intercept)3.11    0.0165  188   0        3.07    3.14    
prop_type_simplifiedCondominium0.00979 0.00452 2.170.0301   0.0009450.0186  
prop_type_simplifiedHouse-0.0477  0.00592 -8.068.12e-16 -0.0593  -0.0361  
prop_type_simplifiedOther0.0891  0.00708 12.6 3.59e-36 0.0752  0.103   
prop_type_simplifiedTownhouse0.0015  0.00833 0.180.857    -0.0148  0.0178  
number_of_reviews0.0004894.02e-0512.2 5.72e-34 0.00041 0.000568
review_scores_rating0.00141 0.0001668.453.12e-17 0.00108 0.00173 
room_typeHotel room0.228   0.0301  7.554.39e-14 0.169   0.287   
room_typePrivate room-0.183   0.00338 -54.1 0        -0.19    -0.176   
room_typeShared room-0.261   0.0216  -12.1 1.78e-33 -0.304   -0.219   
bathrooms0.058   0.00469 12.4 5.16e-35 0.0488  0.0672  
bedrooms0.0491  0.00216 22.7 2.95e-1130.0449  0.0534  
accommodates0.0374  0.00118 31.8 5.54e-2170.0351  0.0397  
host_is_superhostTRUE-0.242   0.122   -1.990.0471   -0.481   -0.00306 
review_scores_rating:host_is_superhostTRUE0.00285 0.00125 2.280.0228   0.0003960.0053  
model4b %>% glance()
r.squaredadj.r.squaredsigmastatisticp.valuedflogLikAICBICdeviancedf.residualnobs
0.4150.4150.1681.17e+030148.41e+03-1.68e+04-1.67e+046512303923054
# Test VIF
car::vif(model4b)
##                                               GVIF Df GVIF^(1/(2*Df))
## prop_type_simplified                      1.371877  4        1.040314
## number_of_reviews                         1.126391  1        1.061316
## review_scores_rating                      1.046224  1        1.022851
## room_type                                 1.278764  3        1.041834
## bathrooms                                 1.333108  1        1.154603
## bedrooms                                  2.863011  1        1.692043
## accommodates                              2.930623  1        1.711906
## host_is_superhost                      1301.822960  1       36.080784
## review_scores_rating:host_is_superhost 1301.627193  1       36.078071
# Check residuals
autoplot(model4b)

Interaction variable host_is_superhost*review_scores_rating is not significant, therefore we do not include it.

Model 4: 41%

1.2.3 Model 5

Most owners advertise the exact location of their listing (is_location_exact == TRUE), while a non-trivial proportion don’t. After controlling for other variables, is a listing’s exact location a significant predictor of price_4_nights?

# Create model5 by adding is_location_exact == TRUE to model4
model5<-lm(price_4_nights_log ~
             prop_type_simplified +
             number_of_reviews +
             review_scores_rating +
             room_type +
             bathrooms +
             bedrooms +
             accommodates +
             is_location_exact+
            host_is_superhost,
             data = listings_log
           )
model5 %>% tidy(conf.int=TRUE)
termestimatestd.errorstatisticp.valueconf.lowconf.high
(Intercept)3.11    0.0165  188    0        3.07    3.14    
prop_type_simplifiedCondominium0.00975 0.00452 2.16 0.0308   0.0009030.0186  
prop_type_simplifiedHouse-0.0478  0.00592 -8.07 7.27e-16 -0.0594  -0.0362  
prop_type_simplifiedOther0.0884  0.00709 12.5  1.36e-35 0.0745  0.102   
prop_type_simplifiedTownhouse0.00103 0.00833 0.1230.902    -0.0153  0.0174  
number_of_reviews0.0004854.01e-0512.1  1.71e-33 0.0004060.000563
review_scores_rating0.00146 0.0001658.85 9.22e-19 0.00114 0.00178 
room_typeHotel room0.227   0.0301  7.52 5.6e-14  0.168   0.286   
room_typePrivate room-0.183   0.00338 -54.1  0        -0.19    -0.176   
room_typeShared room-0.261   0.0216  -12.1  2.35e-33 -0.303   -0.218   
bathrooms0.0582  0.00469 12.4  2.72e-35 0.049   0.0674  
bedrooms0.0491  0.00216 22.7  2.79e-1130.0449  0.0534  
accommodates0.0374  0.00118 31.8  3.56e-2170.0351  0.0397  
is_location_exactTRUE-0.00547 0.00277 -1.97 0.0484   -0.0109  -3.73e-05
host_is_superhostTRUE0.0356  0.00358 9.95 2.93e-23 0.0286  0.0426  
model5 %>% glance()
r.squaredadj.r.squaredsigmastatisticp.valuedflogLikAICBICdeviancedf.residualnobs
0.4150.4150.1681.17e+030148.41e+03-1.68e+04-1.67e+046512303923054
# Test VIF
car::vif(model5)
##                          GVIF Df GVIF^(1/(2*Df))
## prop_type_simplified 1.375094  4        1.040619
## number_of_reviews    1.122768  1        1.059607
## review_scores_rating 1.029247  1        1.014518
## room_type            1.278044  3        1.041736
## bathrooms            1.332750  1        1.154448
## bedrooms             2.863006  1        1.692042
## accommodates         2.931407  1        1.712135
## is_location_exact    1.005398  1        1.002695
## host_is_superhost    1.123547  1        1.059975
# Check residuals
autoplot(model5)

Interpretation of exact location variable:

A listing’s exact location variable has a p value of 0.34, and therefore is not a significant predictor of price_4_nights. Thus, we will not include it in the following models.

Model 4: 41%

1.2.4 Model 6

In order to reduce the number of neighbourhoods for our analysis we cluster the different neighbourhoods into groups, based on our experience, talking to locals, and research.

The city of Copenhagen has 10 official administrative districts. Additionally, there is Frederiksberg, which is an independent municipality and, thus, separate from the Copenhagen Municipality, however, it is still part of Copenhagen city.

Indre By is the city center of Copenhagen and will remain its own cluster “Center”.

All the residential neighbourhoods surrounding the city center are commonly grouped together, and since they all end in -bro, often referred to as -bro districts (Brokvaterer in Danish). Frederiksberg is often also included in the -bro districts. Hence, we will cluster these 4 Brokvaterer districts into one group of Brokvarterer

Additionally, the two Amager districts (Vest and Ost) are grouped together.

In the West, Valby, Vanlose and Brønshøj-Husum are summarized.

Lastly, Bispebjerg, often referred to as Nordvest, which is more of a residential neighbourhood, is its own cluster.

# Create variable neighbourhood_simplified with 5 categories 
listings_log <- listings_log %>%
  mutate(neighbourhood_simplified = case_when(
    neighbourhood_cleansed %in% c("Indre By") ~ "Center",
    neighbourhood_cleansed %in% c("Frederiksberg","Nrrebro", "sterbro","Vesterbro-Kongens Enghave") ~ "Brokvarterer", 
    neighbourhood_cleansed %in% c("Amager st","Amager Vest") ~ "Amager",
    neighbourhood_cleansed %in% c("Brnshj-Husum","Valby", "Vanlose") ~ "West",
    TRUE ~ "Nordvest"
  ))

# Create model6 by adding neighbourhood_simplified to model3
model6<-lm(price_4_nights_log ~
            prop_type_simplified +
             number_of_reviews +
             review_scores_rating +
             room_type +
             bathrooms +
             bedrooms +
             accommodates +
             neighbourhood_simplified +
             host_is_superhost+
             NULL,
             data = listings_log
           )
model6 %>% tidy(conf.int=TRUE)
termestimatestd.errorstatisticp.valueconf.lowconf.high
(Intercept)3.1     0.0154  202   0        3.07    3.13    
prop_type_simplifiedCondominium0.0143  0.00418 3.420.000622 0.00611 0.0225  
prop_type_simplifiedHouse0.0189  0.0057  3.320.000915 0.00773 0.0301  
prop_type_simplifiedOther0.091   0.00657 13.9 1.83e-43 0.0781  0.104   
prop_type_simplifiedTownhouse0.0141  0.00775 1.820.0689   -0.00109 0.0293  
number_of_reviews0.0002313.73e-056.2 5.92e-10 0.0001580.000304
review_scores_rating0.00132 0.0001538.617.6e-18  0.00102 0.00162 
room_typeHotel room0.139   0.0279  4.976.9e-07  0.0839  0.193   
room_typePrivate room-0.175   0.00313 -55.9 0        -0.181   -0.169   
room_typeShared room-0.246   0.02    -12.3 1.46e-34 -0.285   -0.207   
bathrooms0.0541  0.00434 12.5 1.51e-35 0.0456  0.0626  
bedrooms0.0466  0.002   23.3 1.26e-1180.0427  0.0505  
accommodates0.0364  0.00109 33.4 1.2e-238 0.0343  0.0385  
neighbourhood_simplifiedBrokvarterer0.0274  0.00295 9.291.63e-20 0.0216  0.0331  
neighbourhood_simplifiedCenter0.161   0.00383 42.1 0        0.154   0.169   
neighbourhood_simplifiedNordvest-0.0911  0.00451 -20.2 3.76e-90 -0.0999  -0.0823  
neighbourhood_simplifiedWest-0.0836  0.005   -16.7 1.71e-62 -0.0934  -0.0738  
host_is_superhostTRUE0.0311  0.00331 9.4 5.85e-21 0.0246  0.0376  
model6 %>% glance()
r.squaredadj.r.squaredsigmastatisticp.valuedflogLikAICBICdeviancedf.residualnobs
0.50.4990.1551.35e+030171.02e+04-2.04e+04-2.02e+045572303623054
# Test VIF
car::vif(model6)
##                              GVIF Df GVIF^(1/(2*Df))
## prop_type_simplified     1.501568  4        1.052127
## number_of_reviews        1.136203  1        1.065928
## review_scores_rating     1.030892  1        1.015329
## room_type                1.286594  3        1.042894
## bathrooms                1.333482  1        1.154765
## bedrooms                 2.867499  1        1.693369
## accommodates             2.937274  1        1.713848
## neighbourhood_simplified 1.151978  4        1.017842
## host_is_superhost        1.123124  1        1.059775
# Check residuals
autoplot(model6)

One can see that the neighbourhood of an apartment is an predictor of the price for 4 nights in Copenhagen.

Interpretation of neighbourhood predictor:

We can see that all the neighbourhood variables are significant predictors of the price for 4 nights in Copenhagen. Taking Amager as the base, Brokvarterer is asscociated with 0.03 more in log10(price_4_nights); Center is asscociated with 0.16 more in log10(price_4_nights); Nordvest is asscociated with 0.09 drop in log10(price_4_nights); West is asscociated with 0.09 drop in log10(price_4_nights).

Model 6: 50%

1.2.5 Model 7

What is the effect of cancellation_policy on price_4_nights, after we control for other variables?

# Create model7 by adding cancellation_policy to model6
model7<-lm(price_4_nights_log ~
            prop_type_simplified +
             number_of_reviews +
             review_scores_rating +
             room_type +
             bathrooms +
             bedrooms +
             accommodates +
             neighbourhood_simplified +
             cancellation_policy+
             host_is_superhost+NULL,
             data = listings_log
           )
model7 %>% tidy(conf.int=TRUE)
termestimatestd.errorstatisticp.valueconf.lowconf.high
(Intercept)3.09   0.0153  202   0        3.06    3.12    
prop_type_simplifiedCondominium0.0124 0.00415 2.990.00284  0.00425 0.0205  
prop_type_simplifiedHouse0.0189 0.00566 3.350.000822 0.00784 0.03    
prop_type_simplifiedOther0.0734 0.00712 10.3 6.64e-25 0.0595  0.0874  
prop_type_simplifiedTownhouse0.0125 0.0077  1.630.104    -0.00257 0.0276  
number_of_reviews0.000173.73e-054.574.99e-06 9.73e-050.000244
review_scores_rating0.001310.0001528.617.72e-18 0.00101 0.00161 
room_typeHotel room0.175  0.0279  6.293.18e-10 0.121   0.23    
room_typePrivate room-0.17   0.00312 -54.7 0        -0.177   -0.164   
room_typeShared room-0.244  0.0199  -12.3 1.19e-34 -0.283   -0.206   
bathrooms0.0532 0.00431 12.3 7.16e-35 0.0447  0.0616  
bedrooms0.0455 0.00199 22.9 1.16e-1140.0416  0.0494  
accommodates0.0359 0.00108 33.2 1.05e-2350.0338  0.038   
neighbourhood_simplifiedBrokvarterer0.0266 0.00292 9.119.1e-20  0.0209  0.0324  
neighbourhood_simplifiedCenter0.158  0.00381 41.5 0        0.151   0.166   
neighbourhood_simplifiedNordvest-0.0898 0.00447 -20.1 5.59e-89 -0.0986  -0.0811  
neighbourhood_simplifiedWest-0.0805 0.00496 -16.2 6.35e-59 -0.0903  -0.0708  
cancellation_policymoderate0.0269 0.00241 11.2 7.93e-29 0.0222  0.0316  
cancellation_policystrict_14_with_grace_period0.0457 0.00262 17.4 9.54e-68 0.0405  0.0508  
cancellation_policysuper_strict_600.127  0.0173  7.361.88e-13 0.0935  0.161   
host_is_superhostTRUE0.0294 0.00329 8.944.11e-19 0.023   0.0359  
model7 %>% glance()
r.squaredadj.r.squaredsigmastatisticp.valuedflogLikAICBICdeviancedf.residualnobs
0.5070.5070.1541.19e+030201.04e+04-2.07e+04-2.05e+045482303323054
# Test VIF
car::vif(model7)
##                              GVIF Df GVIF^(1/(2*Df))
## prop_type_simplified     1.793107  4        1.075724
## number_of_reviews        1.153751  1        1.074128
## review_scores_rating     1.037877  1        1.018762
## room_type                1.312570  3        1.046374
## bathrooms                1.335585  1        1.155675
## bedrooms                 2.871572  1        1.694571
## accommodates             2.943557  1        1.715680
## neighbourhood_simplified 1.161450  4        1.018885
## cancellation_policy      1.268876  3        1.040487
## host_is_superhost        1.124756  1        1.060545
# Check residuals
autoplot(model7)

The cancellation policy is a significant predictor on price, with a flexible policy commanding the lowest price and with a strict policy commanding the highest price. This is surprising since usually hosts should be rewarded for the risk that they are taking with a flexibly cancellation policy. On the flipside, usually expensive and nice places have a stricter cancellation policy since they cannot afford to not have anyone live in their AirBnB. Thus, in the end the cancellation policy might rather be a consequence of the price and not a predictor of it.

Interpretation of cancellation policy predictor:

The cancellation policy is a significant predictor on price, with a flexible policy commanding the lowest price and with a strict policy commanding the highest price. This is surprising since usually hosts should be rewarded for the risk that they are taking with a flexible cancellation policy. On the other hand, usually expensive and nice places have a stricter cancellation policy since the cost of having the place empty for a night is relatively higher. Thus, in the end the cancellation policy might rather be a consequence of the price and not a predictor of it.

Model 7: 51%

2 PREDICTION

2.1 Selecting the best model

After creating all these models, we now find to find our best model, our final model for predictions.

Comparison of models
(1)(2)(3)(4)(5)(6)(7)
(Intercept)3.244 3.356 3.083 3.102 3.106 3.102 3.086 
(0.020)(0.018)(0.016)(0.016)(0.016)(0.015)(0.015)
prop_type_simplifiedCondominium0.033 0.017 0.011 0.010 0.010 0.014 0.012 
(0.006)(0.005)(0.005)(0.005)(0.005)(0.004)(0.004)
prop_type_simplifiedHouse0.119 0.126 -0.048 -0.048 -0.048 0.019 0.019 
(0.007)(0.006)(0.006)(0.006)(0.006)(0.006)(0.006)
prop_type_simplifiedOther0.178 0.168 0.090 0.089 0.088 0.091 0.073 
(0.009)(0.008)(0.007)(0.007)(0.007)(0.007)(0.007)
prop_type_simplifiedTownhouse0.177 0.166 0.002 0.001 0.001 0.014 0.013 
(0.010)(0.009)(0.008)(0.008)(0.008)(0.008)(0.008)
number_of_reviews0.000 0.001 0.001 0.000 0.000 0.000 0.000 
(0.000)(0.000)(0.000)(0.000)(0.000)(0.000)(0.000)
review_scores_rating0.002 0.002 0.002 0.001 0.001 0.001 0.001 
(0.000)(0.000)(0.000)(0.000)(0.000)(0.000)(0.000)
room_typeHotel room     0.112 0.223 0.226 0.227 0.139 0.175 
     (0.034)(0.030)(0.030)(0.030)(0.028)(0.028)
room_typePrivate room     -0.271 -0.181 -0.183 -0.183 -0.175 -0.170 
     (0.004)(0.003)(0.003)(0.003)(0.003)(0.003)
room_typeShared room     -0.362 -0.262 -0.261 -0.261 -0.246 -0.244 
     (0.025)(0.022)(0.022)(0.022)(0.020)(0.020)
bathrooms          0.058 0.058 0.058 0.054 0.053 
          (0.005)(0.005)(0.005)(0.004)(0.004)
bedrooms          0.049 0.049 0.049 0.047 0.045 
          (0.002)(0.002)(0.002)(0.002)(0.002)
accommodates          0.038 0.037 0.037 0.036 0.036 
          (0.001)(0.001)(0.001)(0.001)(0.001)
host_is_superhostTRUE               0.035 0.036 0.031 0.029 
               (0.004)(0.004)(0.003)(0.003)
is_location_exactTRUE                    -0.005           
                    (0.003)          
neighbourhood_simplifiedBrokvarterer                         0.027 0.027 
                         (0.003)(0.003)
neighbourhood_simplifiedCenter                         0.161 0.158 
                         (0.004)(0.004)
neighbourhood_simplifiedNordvest                         -0.091 -0.090 
                         (0.005)(0.004)
neighbourhood_simplifiedWest                         -0.084 -0.081 
                         (0.005)(0.005)
cancellation_policymoderate                              0.027 
                              (0.002)
cancellation_policystrict_14_with_grace_period                              0.046 
                              (0.003)
cancellation_policysuper_strict_60                              0.127 
                              (0.017)
#observations23076     23076     23060     23054     23054     23054     23054     
R squared0.046 0.243 0.413 0.415 0.415 0.500 0.507 
Adj. R Squared0.046 0.243 0.412 0.415 0.415 0.499 0.507 
Residual SE0.215 0.191 0.168 0.168 0.168 0.155 0.154 

Model 7 is the best model with the highest R2 so this will be the final model.

2.2 Final model

final_model <- lm(price_4_nights_log ~
                  prop_type_simplified +
                  number_of_reviews +
                  review_scores_rating +
                  room_type +
                  bathrooms +
                  bedrooms +
                  accommodates +
                  neighbourhood_simplified +
                  cancellation_policy
                  +host_is_superhost,
                  data = listings_log
                  )

mosaic::msummary(final_model)
##                                                  Estimate Std. Error t value
## (Intercept)                                     3.086e+00  1.530e-02 201.705
## prop_type_simplifiedCondominium                 1.239e-02  4.149e-03   2.985
## prop_type_simplifiedHouse                       1.893e-02  5.658e-03   3.346
## prop_type_simplifiedOther                       7.342e-02  7.116e-03  10.318
## prop_type_simplifiedTownhouse                   1.251e-02  7.695e-03   1.626
## number_of_reviews                               1.705e-04  3.733e-05   4.566
## review_scores_rating                            1.310e-03  1.522e-04   8.611
## room_typeHotel room                             1.755e-01  2.789e-02   6.293
## room_typePrivate room                          -1.705e-01  3.118e-03 -54.671
## room_typeShared room                           -2.445e-01  1.988e-02 -12.298
## bathrooms                                       5.315e-02  4.308e-03  12.339
## bedrooms                                        4.547e-02  1.987e-03  22.888
## accommodates                                    3.592e-02  1.083e-03  33.169
## neighbourhood_simplifiedBrokvarterer            2.663e-02  2.924e-03   9.107
## neighbourhood_simplifiedCenter                  1.581e-01  3.813e-03  41.464
## neighbourhood_simplifiedNordvest               -8.984e-02  4.472e-03 -20.087
## neighbourhood_simplifiedWest                   -8.053e-02  4.961e-03 -16.232
## cancellation_policymoderate                     2.692e-02  2.413e-03  11.156
## cancellation_policystrict_14_with_grace_period  4.567e-02  2.617e-03  17.449
## cancellation_policysuper_strict_60              1.274e-01  1.730e-02   7.361
## host_is_superhostTRUE                           2.941e-02  3.289e-03   8.942
##                                                Pr(>|t|)    
## (Intercept)                                     < 2e-16 ***
## prop_type_simplifiedCondominium                0.002838 ** 
## prop_type_simplifiedHouse                      0.000822 ***
## prop_type_simplifiedOther                       < 2e-16 ***
## prop_type_simplifiedTownhouse                  0.103997    
## number_of_reviews                              4.99e-06 ***
## review_scores_rating                            < 2e-16 ***
## room_typeHotel room                            3.18e-10 ***
## room_typePrivate room                           < 2e-16 ***
## room_typeShared room                            < 2e-16 ***
## bathrooms                                       < 2e-16 ***
## bedrooms                                        < 2e-16 ***
## accommodates                                    < 2e-16 ***
## neighbourhood_simplifiedBrokvarterer            < 2e-16 ***
## neighbourhood_simplifiedCenter                  < 2e-16 ***
## neighbourhood_simplifiedNordvest                < 2e-16 ***
## neighbourhood_simplifiedWest                    < 2e-16 ***
## cancellation_policymoderate                     < 2e-16 ***
## cancellation_policystrict_14_with_grace_period  < 2e-16 ***
## cancellation_policysuper_strict_60             1.88e-13 ***
## host_is_superhostTRUE                           < 2e-16 ***
## 
## Residual standard error: 0.1543 on 23033 degrees of freedom
##   (5469 observations deleted due to missingness)
## Multiple R-squared:  0.5072, Adjusted R-squared:  0.5068 
## F-statistic:  1185 on 20 and 23033 DF,  p-value: < 2.2e-16
get_regression_table(final_model)
termestimatestd_errorstatisticp_valuelower_ciupper_ci
intercept3.09 0.015202   0    3.06 3.12 
prop_type_simplifiedCondominium0.0120.0042.980.0030.0040.021
prop_type_simplifiedHouse0.0190.0063.350.0010.0080.03 
prop_type_simplifiedOther0.0730.00710.3 0    0.0590.087
prop_type_simplifiedTownhouse0.0130.0081.630.104-0.0030.028
number_of_reviews0    0    4.570    0    0    
review_scores_rating0.0010    8.610    0.0010.002
room_typeHotel room0.1750.0286.290    0.1210.23 
room_typePrivate room-0.17 0.003-54.7 0    -0.177-0.164
room_typeShared room-0.2440.02 -12.3 0    -0.283-0.206
bathrooms0.0530.00412.3 0    0.0450.062
bedrooms0.0450.00222.9 0    0.0420.049
accommodates0.0360.00133.2 0    0.0340.038
neighbourhood_simplifiedBrokvarterer0.0270.0039.110    0.0210.032
neighbourhood_simplifiedCenter0.1580.00441.5 0    0.1510.166
neighbourhood_simplifiedNordvest-0.09 0.004-20.1 0    -0.099-0.081
neighbourhood_simplifiedWest-0.0810.005-16.2 0    -0.09 -0.071
cancellation_policymoderate0.0270.00211.2 0    0.0220.032
cancellation_policystrict_14_with_grace_period0.0460.00317.4 0    0.0410.051
cancellation_policysuper_strict_600.1270.0177.360    0.0930.161
host_is_superhostTRUE0.0290.0038.940    0.0230.036
get_regression_summaries(final_model)
r_squaredadj_r_squaredmsermsesigmastatisticp_valuedfnobs
0.5070.5070.02380.1540.1541.19e+030202.31e+04
vif(final_model)
##                              GVIF Df GVIF^(1/(2*Df))
## prop_type_simplified     1.793107  4        1.075724
## number_of_reviews        1.153751  1        1.074128
## review_scores_rating     1.037877  1        1.018762
## room_type                1.312570  3        1.046374
## bathrooms                1.335585  1        1.155675
## bedrooms                 2.871572  1        1.694571
## accommodates             2.943557  1        1.715680
## neighbourhood_simplified 1.161450  4        1.018885
## cancellation_policy      1.268876  3        1.040487
## host_is_superhost        1.124756  1        1.060545

2.3 Prediction

We are planning to visit Copenhagen and want to stay in an Airbnb. We would like to look at Airbnbs that are apartments with a private room, have at least 10 reviews, and an average rating of at least 90.

We will predict the total cost to stay at this Airbnb for 4 nights, including the appropriate 95% interval with the prediction.

# Filter our the data by room_type, nr of reviews and rating
listings_predict_log <- listings_log %>% 
  filter(room_type == "Private room",
         number_of_reviews >= 10,
         review_scores_rating >= 90
         ) 

listings_predict_log
idlisting_urlpriceguests_includedcleaning_feeextra_peopleprop_type_simplifiednumber_of_reviewsreview_scores_ratingroom_typebathroomsbedroomsbedsaccommodateshost_is_superhostis_location_exactneighbourhood_cleansedcancellation_policylongitudelatitudeprice_4_nightsprice_4_nights_logneighbourhood_simplified
6.98e+03https://www.airbnb.com/rooms/6983365       13366      Apartment16896Private room1  112FALSETRUENrrebromoderate12.555.71.76e+033.24Brokvarterer
4.91e+04https://www.airbnb.com/rooms/49122352       10210      Apartment18492Private room1  102FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.25e+033.35Center
6.59e+04https://www.airbnb.com/rooms/65902452       10100      Condominium9294Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.72.21e+033.34Brokvarterer
1.43e+05https://www.airbnb.com/rooms/142599498       20100      Condominium95100Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer
1.77e+05https://www.airbnb.com/rooms/1769631e+03       2225300      Apartment36493Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.74.24e+033.63Brokvarterer
1.86e+05https://www.airbnb.com/rooms/186454458       10100      Apartment18495Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.23e+033.35Brokvarterer
2.4e+05 https://www.airbnb.com/rooms/239705359       10250      Apartment15796Private room1  102TRUEFALSENrrebroflexible12.655.72.44e+033.39Brokvarterer
2.4e+05 https://www.airbnb.com/rooms/239818432       1066      Apartment5196Private room1  112FALSETRUEAmager Vestmoderate12.655.71.99e+033.3 Amager
2.58e+05https://www.airbnb.com/rooms/258430252       10100      Condominium27695Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.555.61.41e+033.15Brokvarterer
3.18e+05https://www.airbnb.com/rooms/318437379       100      Apartment6397Private room1  111TRUETRUENrrebroflexible12.655.71.52e+033.18Brokvarterer
3.27e+05https://www.airbnb.com/rooms/327286664       1166166      Apartment3897Private room0.5122FALSETRUEIndre Byflexible12.655.73.49e+033.54Center
3.31e+05https://www.airbnb.com/rooms/330915359       11000      Apartment63792Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.54e+033.19Brokvarterer
3.39e+05https://www.airbnb.com/rooms/338992399       11000      Apartment40192Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.7e+03 3.23Brokvarterer
3.39e+05https://www.airbnb.com/rooms/339139385       2100150      House11099Private room1  122TRUETRUEAmager Vestmoderate12.655.61.64e+033.21Amager
3.45e+05https://www.airbnb.com/rooms/345187485       166173      Apartment22493Private room1.5113FALSETRUEAmager stmoderate12.655.72.7e+03 3.43Amager
3.61e+05https://www.airbnb.com/rooms/360501651       12000      Apartment4798Private room1  112FALSETRUENrrebromoderate12.555.72.8e+03 3.45Brokvarterer
3.64e+05https://www.airbnb.com/rooms/363722478       1200200      Apartment8291Private room1.5122FALSETRUEFrederiksbergmoderate12.655.72.91e+033.46Brokvarterer
4.57e+05https://www.airbnb.com/rooms/456771598       100      Apartment2199Private room1  124TRUETRUEsterbrostrict_14_with_grace_period12.655.72.39e+033.38Brokvarterer
4.57e+05https://www.airbnb.com/rooms/456776405       100      Apartment23198Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.71.62e+033.21Brokvarterer
5.15e+05https://www.airbnb.com/rooms/515344438       10100      Apartment9099Private room1  112TRUETRUENrrebromoderate12.655.72.15e+033.33Brokvarterer
5.22e+05https://www.airbnb.com/rooms/521856392       1100225      Apartment25397Private room1  102TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.57e+033.41Brokvarterer
5.54e+05https://www.airbnb.com/rooms/553888352       2100100      Apartment6794Private room1  112TRUETRUENrrebromoderate12.555.71.51e+033.18Brokvarterer
5.6e+05 https://www.airbnb.com/rooms/559944897       100      Apartment5395Private room  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.73.59e+033.55Brokvarterer
5.66e+05https://www.airbnb.com/rooms/566317392       1250200      Apartment8390Private room1  011FALSETRUENrrebromoderate12.655.72.62e+033.42Brokvarterer
5.99e+05https://www.airbnb.com/rooms/5989162e+03       1200200      Condominium10991Private room1.5132FALSETRUEFrederiksbergmoderate12.655.79e+03       3.95Brokvarterer
6.05e+05https://www.airbnb.com/rooms/605386452       220050      Apartment7296Private room1  113TRUETRUENrrebrostrict_14_with_grace_period12.655.72.01e+033.3 Brokvarterer
6.23e+05https://www.airbnb.com/rooms/623404399       1100199      Apartment11498Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.49e+033.4 Brokvarterer
6.31e+05https://www.airbnb.com/rooms/630572452       100      Apartment5399Private room1  111FALSETRUEAmager ststrict_14_with_grace_period12.655.71.81e+033.26Amager
6.45e+05https://www.airbnb.com/rooms/645357751       2400250      Apartment10896Private room1  222TRUETRUEIndre Byflexible12.655.73.4e+03 3.53Center
6.51e+05https://www.airbnb.com/rooms/650825272       140110      Apartment14596Private room1  111TRUETRUEValbymoderate12.555.71.57e+033.2 West
6.56e+05https://www.airbnb.com/rooms/656319399       1200200      Apartment2297Private room1  111FALSETRUEAmager Vestflexible12.655.72.6e+03 3.41Amager
6.57e+05https://www.airbnb.com/rooms/657356505       2100250      Other23992Private room1.5123FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.12e+033.33Brokvarterer
6.64e+05https://www.airbnb.com/rooms/663859498       12910      Apartment4697Private room1  222FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.72.28e+033.36Brokvarterer
6.7e+05 https://www.airbnb.com/rooms/670384511       1298186      Apartment12795Private room2  113TRUETRUEAmager Vestmoderate12.655.73.09e+033.49Amager
6.82e+05https://www.airbnb.com/rooms/681827498       20150      Condominium16795Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer
7.69e+05https://www.airbnb.com/rooms/768784697       2300200      Apartment8798Private room1  124FALSETRUEAmager Vestmoderate12.655.63.09e+033.49Amager
7.69e+05https://www.airbnb.com/rooms/768831452       1200150      Other6199Private room1  113FALSETRUEAmager Vestflexible12.655.62.61e+033.42Amager
8.13e+05https://www.airbnb.com/rooms/813233558       110090      Apartment21795Private room1  112FALSETRUENrrebromoderate12.655.72.69e+033.43Brokvarterer
8.22e+05https://www.airbnb.com/rooms/821817498       100      Apartment21100Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer
8.28e+05https://www.airbnb.com/rooms/828245206       160119      Apartment5696Private room1  112FALSETRUEFrederiksbergflexible12.555.71.36e+033.13Brokvarterer
8.41e+05https://www.airbnb.com/rooms/840903399       1180100      Apartment31897Private room1  111TRUEFALSEAmager Vestmoderate12.655.72.18e+033.34Amager
8.57e+05https://www.airbnb.com/rooms/856706578       1125150      Apartment17193Private room1  224TRUEFALSEFrederiksbergmoderate12.655.73.04e+033.48Brokvarterer
8.64e+05https://www.airbnb.com/rooms/864049452       1150125      Apartment8798Private room1  112TRUEFALSEsterbromoderate12.655.72.46e+033.39Brokvarterer
8.77e+05https://www.airbnb.com/rooms/876975392       19090      Apartment27693Private room1  112FALSETRUENrrebromoderate12.655.72.02e+033.3 Brokvarterer
8.8e+05 https://www.airbnb.com/rooms/879765598       14000      Other3094Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.79e+033.45Brokvarterer
8.85e+05https://www.airbnb.com/rooms/885261485       100      Apartment9097Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.71.94e+033.29Center
9.1e+05 https://www.airbnb.com/rooms/9098061.05e+03200      Apartment3696Private room1  132FALSETRUEAmager stmoderate12.655.74.2e+03 3.62Amager
9.23e+05https://www.airbnb.com/rooms/923152425       10100      Apartment9493Private room1.5111FALSETRUEIndre Bymoderate12.655.72.1e+03 3.32Center
9.35e+05https://www.airbnb.com/rooms/935427698       11000      Condominium4396Private room1  102FALSETRUEAmager Vestmoderate12.655.72.89e+033.46Amager
9.49e+05https://www.airbnb.com/rooms/948953697       20200      Other1096Private room1  102TRUETRUEValbyflexible12.555.72.79e+033.45West
9.49e+05https://www.airbnb.com/rooms/948955598       100      Other4696Private room1  102TRUETRUEValbyflexible12.555.72.39e+033.38West
9.56e+05https://www.airbnb.com/rooms/956091359       1155150      Apartment9498Private room1  111TRUETRUEAmager Vestmoderate12.655.62.19e+033.34Amager
9.79e+05https://www.airbnb.com/rooms/979445452       215090      Other9391Private room1  114FALSETRUEVanlsemoderate12.555.71.96e+033.29Nordvest
1.01e+06https://www.airbnb.com/rooms/1014714498       300      Condominium1092Private room1.5101FALSETRUEFrederiksbergmoderate12.555.71.99e+033.3 Brokvarterer
1.03e+06https://www.airbnb.com/rooms/1025486452       1100200      Townhouse13897Private room1  122TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.71e+033.43Brokvarterer
1.03e+06https://www.airbnb.com/rooms/1033496425       100      Apartment17094Private room1  112TRUETRUENrrebroflexible12.655.71.7e+03 3.23Brokvarterer
1.03e+06https://www.airbnb.com/rooms/1033553472       11000      Apartment5799Private room1  102TRUETRUENrrebrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer
1.03e+06https://www.airbnb.com/rooms/1033676498       11000      Apartment11396Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.09e+033.32Brokvarterer
1.04e+06https://www.airbnb.com/rooms/1040910485       100      Apartment8799Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.61.94e+033.29Brokvarterer
1.07e+06https://www.airbnb.com/rooms/1069482565       10250      Apartment20597Private room1  111TRUEFALSEIndre Bymoderate12.655.73.26e+033.51Center
1.09e+06https://www.airbnb.com/rooms/1093642332       27537      House4293Private room1  112FALSETRUEValbyflexible12.555.71.4e+03 3.15West
1.1e+06 https://www.airbnb.com/rooms/1102901498       1150250      Apartment11495Private room1  011FALSETRUEIndre Bymoderate12.655.73.14e+033.5 Center
1.14e+06https://www.airbnb.com/rooms/1143614498       11000      Apartment4797Private room1  102TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.09e+033.32Brokvarterer
1.17e+06https://www.airbnb.com/rooms/1167176498       11500      Apartment3095Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.72.14e+033.33Brokvarterer
1.19e+06https://www.airbnb.com/rooms/1194269352       12500      Apartment16100Private room1  222FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.66e+033.22Brokvarterer
1.2e+06 https://www.airbnb.com/rooms/1200614399       110090      House5294Private room1  111TRUETRUEAmager Vestflexible12.655.62.06e+033.31Amager
1.22e+06https://www.airbnb.com/rooms/1218328498       100      Apartment19196Private room1  112FALSETRUENrrebroflexible12.655.71.99e+033.3 Brokvarterer
1.22e+06https://www.airbnb.com/rooms/1220002452       1150200      Apartment20298Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.72.76e+033.44Center
1.23e+06https://www.airbnb.com/rooms/1227230751       1150100      Apartment1692Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.55e+033.55Center
1.25e+06https://www.airbnb.com/rooms/1248120797       1385150      Apartment3592Private room1.5113FALSETRUEAmager Vestmoderate12.655.74.17e+033.62Amager
1.3e+06 https://www.airbnb.com/rooms/1301296292       14000      Apartment1193Private room1  111FALSEFALSENrrebrostrict_14_with_grace_period12.655.71.57e+033.2 Brokvarterer
1.3e+06 https://www.airbnb.com/rooms/1302945352       2200100      Apartment6196Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.61e+033.21Brokvarterer
1.31e+06https://www.airbnb.com/rooms/1305915352       10200      House7298Private room1  223FALSEFALSEVesterbro-Kongens Enghavemoderate12.555.62.21e+033.34Brokvarterer
1.33e+06https://www.airbnb.com/rooms/1325512498       130050      Apartment1798Private room1  112FALSETRUENrrebromoderate12.555.72.49e+033.4 Brokvarterer
1.37e+06https://www.airbnb.com/rooms/1369531525       1100250      Townhouse4295Private room1.5111TRUETRUEAmager Vestmoderate12.655.73.2e+03 3.51Amager
1.38e+06https://www.airbnb.com/rooms/1377311498       11500      Condominium13794Private room1.5112FALSEFALSENrrebromoderate12.555.72.14e+033.33Brokvarterer
1.38e+06https://www.airbnb.com/rooms/1380790252       1250150      Apartment2693Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.86e+033.27Brokvarterer
1.4e+06 https://www.airbnb.com/rooms/1398989452       1250100      Apartment6097Private room1  111TRUEFALSENrrebrostrict_14_with_grace_period12.655.72.46e+033.39Brokvarterer
1.42e+06https://www.airbnb.com/rooms/1423825618       100      Apartment14097Private room1  112TRUETRUEIndre Byflexible12.655.72.47e+033.39Center
1.44e+06https://www.airbnb.com/rooms/1442435252       1100100      Apartment3293Private room1  101TRUEFALSEValbyflexible12.555.71.51e+033.18West
1.46e+06https://www.airbnb.com/rooms/1455294751       3100400      Apartment9591Private room1  103FALSEFALSEIndre Byflexible12.655.73.1e+03 3.49Center
1.46e+06https://www.airbnb.com/rooms/1457864325       12000      Apartment16191Private room1  112FALSETRUEIndre Byflexible12.655.71.5e+03 3.18Center
1.47e+06https://www.airbnb.com/rooms/1471084372       1300140      Apartment3093Private room1  112FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.72.35e+033.37Brokvarterer
1.54e+06https://www.airbnb.com/rooms/1541680445       111275      Apartment34998Private room1  112TRUETRUEsterbromoderate12.655.72.19e+033.34Brokvarterer
1.54e+06https://www.airbnb.com/rooms/1544061425       1175140      Apartment5495Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.44e+033.39Brokvarterer
1.55e+06https://www.airbnb.com/rooms/1546617379       11000      Apartment2397Private room1  111FALSETRUEAmager Vestmoderate12.655.71.62e+033.21Amager
1.56e+06https://www.airbnb.com/rooms/1557373624       100      Apartment41395Private room1  112TRUETRUEIndre Bymoderate12.655.72.5e+03 3.4 Center
1.56e+06https://www.airbnb.com/rooms/1563229452       15050      Apartment3199Private room1.5112TRUETRUENrrebromoderate12.555.72.06e+033.31Brokvarterer
1.58e+06https://www.airbnb.com/rooms/1577506299       100      Apartment8098Private room1  111FALSEFALSEsterbroflexible12.655.71.2e+03 3.08Brokvarterer
1.59e+06https://www.airbnb.com/rooms/1591147445       1261224      Apartment21297Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.94e+033.47Brokvarterer
1.61e+06https://www.airbnb.com/rooms/1613987332       240150      Apartment11590Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.37e+033.14Brokvarterer
1.62e+06https://www.airbnb.com/rooms/1621001664       1332332      Apartment3498Private room1  112TRUEFALSEAmager Vestmoderate12.655.74.32e+033.64Amager
1.69e+06https://www.airbnb.com/rooms/1685324452       100      Apartment10096Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.81e+033.26Brokvarterer
1.74e+06https://www.airbnb.com/rooms/1740273399       13000      Apartment6795Private room1  112TRUETRUEBispebjergflexible12.555.71.9e+03 3.28Nordvest
1.74e+06https://www.airbnb.com/rooms/1742116598       10500      Townhouse1198Private room1  111TRUETRUEFrederiksbergflexible12.555.74.39e+033.64Brokvarterer
1.8e+06 https://www.airbnb.com/rooms/1802389399       20200      Apartment5995Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.6e+03 3.2 Brokvarterer
1.81e+06https://www.airbnb.com/rooms/1806840498       1150100      Apartment13898Private room1.5202TRUEFALSEIndre Bymoderate12.655.72.54e+033.41Center
1.81e+06https://www.airbnb.com/rooms/1810626392       100      Apartment7293Private room1  111TRUEFALSEAmager stflexible12.655.71.57e+033.2 Amager
1.87e+06https://www.airbnb.com/rooms/1866847452       2500      Apartment10097Private room1  122FALSEFALSEFrederiksbergmoderate12.555.71.86e+033.27Brokvarterer
1.92e+06https://www.airbnb.com/rooms/1917329498       12000      Condominium4397Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.19e+033.34Brokvarterer
1.93e+06https://www.airbnb.com/rooms/1932744498       12000      Apartment5299Private room1  112FALSETRUENrrebromoderate12.655.72.19e+033.34Brokvarterer
1.95e+06https://www.airbnb.com/rooms/1945602345       10100      House3899Private room1  112TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.78e+033.25Nordvest
2.01e+06https://www.airbnb.com/rooms/2007532299       1200100      Condominium5693Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.8e+03 3.25Amager
2.02e+06https://www.airbnb.com/rooms/2017914379       17597      Apartment27693Private room1  223TRUEFALSENrrebrostrict_14_with_grace_period12.655.71.98e+033.3 Brokvarterer
2.02e+06https://www.airbnb.com/rooms/2019104551       11000      Apartment2494Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.3e+03 3.36Brokvarterer
2.09e+06https://www.airbnb.com/rooms/2085203239       1249109      Apartment8796Private room1  112FALSETRUEValbymoderate12.555.71.64e+033.22West
2.14e+06https://www.airbnb.com/rooms/2143694399       100      Apartment6194Private room1  112FALSETRUEAmager stmoderate12.655.71.6e+03 3.2 Amager
2.15e+06https://www.airbnb.com/rooms/2152286412       1400100      Apartment4996Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.45e+033.39Center
2.24e+06https://www.airbnb.com/rooms/2236203651       20100      Apartment3794Private room1  112TRUETRUEAmager Vestflexible12.655.72.6e+03 3.42Amager
2.27e+06https://www.airbnb.com/rooms/2266880326       2100100      Apartment2494Private room1  112FALSEFALSENrrebromoderate12.555.71.4e+03 3.15Brokvarterer
2.27e+06https://www.airbnb.com/rooms/2271424498       150450      Apartment63100Private room1  113FALSETRUENrrebromoderate12.655.73.84e+033.58Brokvarterer
2.28e+06https://www.airbnb.com/rooms/2275416399       110090      House3495Private room1  112TRUETRUEAmager Vestflexible12.655.62.06e+033.31Amager
2.34e+06https://www.airbnb.com/rooms/2342778279       1200100      Apartment10796Private room1  112TRUETRUEFrederiksbergmoderate12.655.71.72e+033.23Brokvarterer
2.37e+06https://www.airbnb.com/rooms/2365927452       41250      Apartment8193Private room1  112TRUETRUEAmager Vestmoderate12.655.71.93e+033.29Amager
2.37e+06https://www.airbnb.com/rooms/2371616299       100      Apartment1090Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.2e+03 3.08Brokvarterer
2.38e+06https://www.airbnb.com/rooms/2382240352       12500      Apartment3598Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.66e+033.22Brokvarterer
2.46e+06https://www.airbnb.com/rooms/2459663299       100      Apartment12496Private room1  112TRUETRUEAmager Vestflexible12.655.71.2e+03 3.08Amager
2.49e+06https://www.airbnb.com/rooms/2487940598       1330330      Apartment1597Private room1  112FALSETRUENrrebromoderate12.655.74.04e+033.61Brokvarterer
2.5e+06 https://www.airbnb.com/rooms/2499542498       12500      Apartment45198Private room1  112TRUEFALSEIndre Bymoderate12.655.72.24e+033.35Center
2.51e+06https://www.airbnb.com/rooms/2508408551       2300200      Apartment3396Private room1  123FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.5e+03 3.4 Center
2.54e+06https://www.airbnb.com/rooms/2541947498       2200200      Apartment12692Private room1  112TRUEFALSEVesterbro-Kongens Enghaveflexible12.655.72.19e+033.34Brokvarterer
2.57e+06https://www.airbnb.com/rooms/2568775498       1500      Apartment9196Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.04e+033.31Brokvarterer
2.59e+06https://www.airbnb.com/rooms/2592713312       1150150      Apartment8592Private room1  112FALSETRUEsterbromoderate12.655.72e+03       3.3 Brokvarterer
2.64e+06https://www.airbnb.com/rooms/2642090399       15252      Apartment3399Private room1.5112TRUETRUENrrebromoderate12.555.71.86e+033.27Brokvarterer
2.65e+06https://www.airbnb.com/rooms/2647233598       220080      Apartment32993Private room1  123FALSETRUEFrederiksbergmoderate12.555.72.59e+033.41Brokvarterer
2.67e+06https://www.airbnb.com/rooms/2667270498       10100      Apartment10399Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.39e+033.38Brokvarterer
2.71e+06https://www.airbnb.com/rooms/2708639299       11000      Apartment1494Private room1  111FALSEFALSEFrederiksbergmoderate12.555.71.3e+03 3.11Brokvarterer
2.73e+06https://www.airbnb.com/rooms/2728538452       2150100      House2393Private room1  111FALSETRUEFrederiksbergflexible12.555.71.96e+033.29Brokvarterer
2.77e+06https://www.airbnb.com/rooms/2766765252       100      Apartment8995Private room0.5101FALSETRUEVanlsemoderate12.555.71.01e+033   Nordvest
2.78e+06https://www.airbnb.com/rooms/2777426545       100      House11798Private room1  102TRUEFALSEVesterbro-Kongens Enghaveflexible12.555.62.18e+033.34Brokvarterer
2.78e+06https://www.airbnb.com/rooms/2777681352       23000      Apartment6699Private room1  112TRUETRUENrrebromoderate12.555.71.71e+033.23Brokvarterer
2.8e+06 https://www.airbnb.com/rooms/2801086325       2125125      House9395Private room1  112TRUETRUEVanlsemoderate12.555.71.42e+033.15Nordvest
2.81e+06https://www.airbnb.com/rooms/2808956279       1100199      Apartment5198Private room1  111TRUEFALSENrrebromoderate12.555.72.01e+033.3 Brokvarterer
2.82e+06https://www.airbnb.com/rooms/2824743352       1500      Apartment2390Private room2  111FALSEFALSEsterbromoderate12.655.71.46e+033.16Brokvarterer
2.83e+06https://www.airbnb.com/rooms/2826469425       1253201      Apartment10100Private room1  112FALSETRUEIndre Bymoderate12.655.72.76e+033.44Center
2.83e+06https://www.airbnb.com/rooms/2834713299       11000      House1293Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.3e+03 3.11West
2.84e+06https://www.airbnb.com/rooms/2844814498       30100      House1893Private room1  133FALSETRUEValbyflexible12.555.71.99e+033.3 West
2.89e+06https://www.airbnb.com/rooms/2891048492       100      Apartment1096Private room1  112FALSETRUEIndre Byflexible12.655.71.97e+033.29Center
2.91e+06https://www.airbnb.com/rooms/2905934764       110050      Condominium1892Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.73.36e+033.53Brokvarterer
2.92e+06https://www.airbnb.com/rooms/2916891432       2050      Apartment6594Private room1  212FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.73e+033.24Brokvarterer
2.94e+06https://www.airbnb.com/rooms/2937773498       100      Apartment4195Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer
2.95e+06https://www.airbnb.com/rooms/2946481412       17575      Apartment14593Private room1  112TRUETRUEAmager Vestmoderate12.655.72.02e+033.31Amager
3.04e+06https://www.airbnb.com/rooms/3036965252       1150150      Apartment5897Private room0.5102FALSETRUEAmager stflexible12.655.71.76e+033.25Amager
3.11e+06https://www.airbnb.com/rooms/3105546332       12240      Other6796Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.61.55e+033.19Brokvarterer
3.14e+06https://www.airbnb.com/rooms/3141745239       2050      Apartment1098Private room1  102FALSETRUEBispebjergflexible12.555.7956       2.98Nordvest
3.14e+06https://www.airbnb.com/rooms/3144558359       11490      Condominium6499Private room1  111TRUETRUEsterbromoderate12.655.71.58e+033.2 Brokvarterer
3.15e+06https://www.airbnb.com/rooms/3145494279       112070      Apartment21998Private room1  112TRUETRUEIndre Byflexible12.655.71.52e+033.18Center
3.2e+06 https://www.airbnb.com/rooms/3199820372       100      Apartment21897Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.49e+033.17Brokvarterer
3.21e+06https://www.airbnb.com/rooms/3207575299       110050      Apartment2790Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.5e+03 3.17Brokvarterer
3.25e+06https://www.airbnb.com/rooms/3245019352       1300      Apartment22198Private room1  111TRUEFALSEAmager stmoderate12.655.71.44e+033.16Amager
3.25e+06https://www.airbnb.com/rooms/3249158352       11000      Apartment1795Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.51e+033.18Brokvarterer
3.26e+06https://www.airbnb.com/rooms/3255922399       11000      Apartment2897Private room1  112FALSETRUEIndre Bymoderate12.655.71.7e+03 3.23Center
3.26e+06https://www.airbnb.com/rooms/3261996399       100      Other1196Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.6e+03 3.2 West
3.27e+06https://www.airbnb.com/rooms/3266326399       100      House2694Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.6e+03 3.2 West
3.27e+06https://www.airbnb.com/rooms/3268999412       14470      Apartment1692Private room0.5112FALSEFALSEIndre Bystrict_14_with_grace_period12.655.72.1e+03 3.32Center
3.28e+06https://www.airbnb.com/rooms/3275063352       1050      Apartment3296Private room1  112FALSETRUENrrebroflexible12.655.71.61e+033.21Brokvarterer
3.32e+06https://www.airbnb.com/rooms/3316790379       1100200      Apartment2191Private room1.5112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.42e+033.38Brokvarterer
3.32e+06https://www.airbnb.com/rooms/3323785498       11500      Apartment7692Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.14e+033.33Center
3.33e+06https://www.airbnb.com/rooms/33285871.88e+0320319      Other8893Private room1  142FALSEFALSEAmager stflexible12.655.77.52e+033.88Amager
3.34e+06https://www.airbnb.com/rooms/3336629392       100      House18495Private room1.5111FALSETRUEIndre Byflexible12.655.71.57e+033.2 Center
3.34e+06https://www.airbnb.com/rooms/3341972399       2120100      Apartment2796Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.72e+033.23Brokvarterer
3.36e+06https://www.airbnb.com/rooms/3357093299       10100      Apartment9994Private room1.5112FALSETRUEAmager Vestflexible12.655.71.6e+03 3.2 Amager
3.36e+06https://www.airbnb.com/rooms/3364839252       415045      Apartment1593Private room1  121FALSEFALSEBispebjergmoderate12.555.71.16e+033.06Nordvest
3.37e+06https://www.airbnb.com/rooms/3366023412       100      Apartment2092Private room1  112FALSETRUEAmager Vestflexible12.655.71.65e+033.22Amager
3.38e+06https://www.airbnb.com/rooms/3377489551       270250      Apartment2897Private room1  133FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.27e+033.36Brokvarterer
3.38e+06https://www.airbnb.com/rooms/3382865438       1250100      Apartment24698Private room1  112TRUETRUEIndre Bymoderate12.655.72.4e+03 3.38Center
3.39e+06https://www.airbnb.com/rooms/3388899266       111050      Apartment13796Private room1  112TRUETRUEBrnshj-Husumflexible12.555.71.37e+033.14West
3.45e+06https://www.airbnb.com/rooms/3450902332       27575      House2598Private room1  112FALSETRUEValbyflexible12.555.71.4e+03 3.15West
3.48e+06https://www.airbnb.com/rooms/3482608332       100      Apartment4294Private room1  111FALSETRUENrrebroflexible12.655.71.33e+033.12Brokvarterer
3.53e+06https://www.airbnb.com/rooms/3530784359       2149186      Apartment5192Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.58e+033.2 Brokvarterer
3.56e+06https://www.airbnb.com/rooms/3560024452       21800      Apartment29891Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.99e+033.3 Brokvarterer
3.56e+06https://www.airbnb.com/rooms/3562831312       2150150      Apartment14798Private room1  124TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.4e+03 3.15Brokvarterer
3.57e+06https://www.airbnb.com/rooms/3570192352       20150      House1699Private room1  122TRUETRUEBrnshj-Husummoderate12.555.71.41e+033.15West
3.6e+06 https://www.airbnb.com/rooms/3598715299       200      Apartment10696Private room1.5112TRUETRUENrrebromoderate12.555.71.2e+03 3.08Brokvarterer
3.64e+06https://www.airbnb.com/rooms/3637065286       11000      Apartment8495Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.24e+033.09Brokvarterer
3.66e+06https://www.airbnb.com/rooms/3658168226       21200      Apartment3797Private room1  112FALSETRUEBispebjergmoderate12.555.71.02e+033.01Nordvest
3.68e+06https://www.airbnb.com/rooms/3678040399       1150200      Apartment2792Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.55e+033.41Brokvarterer
3.69e+06https://www.airbnb.com/rooms/3685353697       1150400      Apartment1495Private room1  111FALSETRUEFrederiksbergmoderate12.555.74.54e+033.66Brokvarterer
3.72e+06https://www.airbnb.com/rooms/37227451.05e+0320499      House16692Private room1  134FALSEFALSEAmager stflexible12.655.74.2e+03 3.62Amager
3.74e+06https://www.airbnb.com/rooms/3740236850       21000      Apartment4692Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.73.5e+03 3.54Brokvarterer
3.78e+06https://www.airbnb.com/rooms/3779896551       2150200      Apartment7393Private room1  122TRUETRUEAmager Vestmoderate12.655.72.35e+033.37Amager
3.78e+06https://www.airbnb.com/rooms/3781035498       11000      Apartment24297Private room1.5102TRUETRUEIndre Bymoderate12.655.72.09e+033.32Center
3.85e+06https://www.airbnb.com/rooms/38471182.3e+03 120090      Apartment2192Private room1  112FALSETRUEBispebjergmoderate12.555.79.75e+033.99Nordvest
3.88e+06https://www.airbnb.com/rooms/3880972299       1600      Apartment15090Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.655.71.26e+033.1 Brokvarterer
3.89e+06https://www.airbnb.com/rooms/3891991299       12000      Apartment2793Private room1  102FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.4e+03 3.14Brokvarterer
3.9e+06 https://www.airbnb.com/rooms/3900575392       1195295      Apartment2497Private room1  111FALSEFALSEFrederiksbergmoderate12.555.72.94e+033.47Brokvarterer
3.91e+06https://www.airbnb.com/rooms/3911851525       21500      Apartment20695Private room1  102TRUETRUENrrebrostrict_14_with_grace_period12.655.72.25e+033.35Brokvarterer
3.93e+06https://www.airbnb.com/rooms/3928206352       100      Apartment1793Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.41e+033.15Brokvarterer
3.95e+06https://www.airbnb.com/rooms/3945149372       21500      Townhouse11595Private room1.5112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.64e+033.21Amager
3.95e+06https://www.airbnb.com/rooms/3949538498       22000      Apartment8097Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.19e+033.34Amager
3.96e+06https://www.airbnb.com/rooms/3960092897       2150200      Apartment3696Private room1  103FALSEFALSEAmager Veststrict_14_with_grace_period12.655.73.74e+033.57Amager
3.96e+06https://www.airbnb.com/rooms/3960971299       2150100      Condominium4292Private room1  112FALSETRUEValbymoderate12.555.71.35e+033.13West
3.98e+06https://www.airbnb.com/rooms/3977491399       1150100      Apartment4092Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.15e+033.33Brokvarterer
3.98e+06https://www.airbnb.com/rooms/3980777372       1150125      Apartment3794Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.14e+033.33Brokvarterer
4.02e+06https://www.airbnb.com/rooms/4019068498       4100100      Apartment1997Private room1.5112FALSETRUEBispebjergflexible12.555.72.09e+033.32Nordvest
4.02e+06https://www.airbnb.com/rooms/4024293525       1200150      Apartment1191Private room1  123FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.9e+03 3.46Brokvarterer
4.06e+06https://www.airbnb.com/rooms/4055799292       11000      House1998Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.27e+033.1 West
4.08e+06https://www.airbnb.com/rooms/4078887392       100      Apartment5696Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.57e+033.2 Brokvarterer
4.09e+06https://www.airbnb.com/rooms/4086966352       100      Apartment6197Private room1  111FALSETRUEFrederiksbergflexible12.555.71.41e+033.15Brokvarterer
4.11e+06https://www.airbnb.com/rooms/4113742598       1250250      Apartment2796Private room1  112FALSETRUEFrederiksbergflexible12.555.73.64e+033.56Brokvarterer
4.13e+06https://www.airbnb.com/rooms/4132033372       11500      Apartment3893Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.64e+033.21Brokvarterer
4.14e+06https://www.airbnb.com/rooms/4139642365       11500      Apartment19593Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.61e+033.21Brokvarterer
4.14e+06https://www.airbnb.com/rooms/4141548352       1600100      Apartment2098Private room0.5112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.41e+033.38Brokvarterer
4.16e+06https://www.airbnb.com/rooms/4155326498       100      Apartment11596Private room1  112FALSEFALSEIndre Bymoderate12.655.71.99e+033.3 Center
4.23e+06https://www.airbnb.com/rooms/4228882498       1800      Apartment3897Private room1  102TRUETRUEValbymoderate12.555.72.07e+033.32West
4.23e+06https://www.airbnb.com/rooms/4229857299       1150100      Apartment6093Private room1  112FALSEFALSEBispebjergmoderate12.555.71.75e+033.24Nordvest
4.23e+06https://www.airbnb.com/rooms/4234463266       132110      Apartment3997Private room1  111FALSETRUEsterbromoderate12.655.71.54e+033.19Brokvarterer
4.24e+06https://www.airbnb.com/rooms/4237920272       110050      Apartment1093Private room0.5112FALSETRUEBispebjergmoderate12.555.71.39e+033.14Nordvest
4.28e+06https://www.airbnb.com/rooms/4276029399       11000      Apartment1395Private room1  112FALSETRUEsterbroflexible12.655.71.7e+03 3.23Brokvarterer
4.35e+06https://www.airbnb.com/rooms/4353943598       1500      Apartment3096Private room1  112FALSETRUEIndre Byflexible12.655.72.44e+033.39Center
4.37e+06https://www.airbnb.com/rooms/4365371279       11000      House1995Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.22e+033.08West
4.38e+06https://www.airbnb.com/rooms/4376719578       11500      Apartment10797Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.46e+033.39Brokvarterer
4.39e+06https://www.airbnb.com/rooms/4385902525       1240125      Apartment1096Private room1  112FALSETRUENrrebromoderate12.655.72.84e+033.45Brokvarterer
4.4e+06 https://www.airbnb.com/rooms/4399266478       11500      Apartment6697Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.06e+033.31Brokvarterer
4.41e+06https://www.airbnb.com/rooms/4413881399       100      Apartment1398Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.6e+03 3.2 Brokvarterer
4.42e+06https://www.airbnb.com/rooms/4420277698       23000      Apartment5497Private room1  113FALSETRUEAmager Vestmoderate12.655.73.09e+033.49Amager
4.44e+06https://www.airbnb.com/rooms/4441339173       1350100      House2395Private room1  111FALSETRUEVanlsemoderate12.555.71.44e+033.16Nordvest
4.46e+06https://www.airbnb.com/rooms/4458924352       15050      Apartment2897Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.66e+033.22Brokvarterer
4.46e+06https://www.airbnb.com/rooms/4458942352       210050      Apartment1793Private room0.5112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.51e+033.18Brokvarterer
4.46e+06https://www.airbnb.com/rooms/4463203598       100      Apartment11098Private room1  112TRUETRUENrrebromoderate12.655.72.39e+033.38Brokvarterer
4.51e+06https://www.airbnb.com/rooms/4505775399       13000      Apartment8399Private room1  112TRUETRUEValbystrict_14_with_grace_period12.555.71.9e+03 3.28West
4.54e+06https://www.airbnb.com/rooms/4544267498       11000      Apartment4799Private room1  112FALSETRUENrrebromoderate12.555.72.09e+033.32Brokvarterer
4.55e+06https://www.airbnb.com/rooms/4554561299       1200180      Apartment15295Private room0.5122TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.12e+033.33Brokvarterer
4.56e+06https://www.airbnb.com/rooms/4561096299       10200      Apartment19397Private room1  111TRUETRUEAmager stflexible12.655.72e+03       3.3 Amager
4.58e+06https://www.airbnb.com/rooms/4583864359       1200100      House2494Private room1  112FALSETRUEBrnshj-Husumflexible12.555.72.04e+033.31West
4.61e+06https://www.airbnb.com/rooms/4609483299       150150      Condominium13793Private room1  112FALSETRUEFrederiksbergflexible12.655.71.85e+033.27Brokvarterer
4.65e+06https://www.airbnb.com/rooms/4646985638       1250200      Condominium19100Private room1  112TRUETRUEIndre Byflexible12.655.73.6e+03 3.56Center
4.65e+06https://www.airbnb.com/rooms/4652503352       20150      Condominium3497Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.41e+033.15Brokvarterer
4.7e+06 https://www.airbnb.com/rooms/4698517571       13500      Condominium24495Private room1  112FALSEFALSEIndre Bymoderate12.655.72.63e+033.42Center
4.7e+06 https://www.airbnb.com/rooms/46997541e+03       21500      Apartment5691Private room1  112FALSETRUENrrebromoderate12.655.74.16e+033.62Brokvarterer
4.81e+06https://www.airbnb.com/rooms/4813422598       100      Apartment1690Private room1  112FALSEFALSEsterbroflexible12.655.72.39e+033.38Brokvarterer
4.82e+06https://www.airbnb.com/rooms/4824478299       1300100      Apartment3293Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.9e+03 3.28Brokvarterer
4.83e+06https://www.airbnb.com/rooms/4831114332       190100      Apartment6598Private room1  112FALSEFALSENrrebromoderate12.655.71.82e+033.26Brokvarterer
4.84e+06https://www.airbnb.com/rooms/4842831326       11000      Apartment2297Private room1  112FALSETRUEsterbroflexible12.655.71.4e+03 3.15Brokvarterer
4.87e+06https://www.airbnb.com/rooms/4869039279       100      House1196Private room1  112TRUETRUEBrnshj-Husumflexible12.555.71.12e+033.05West
4.93e+06https://www.airbnb.com/rooms/4934875252       14001e+03      Apartment2598Private room0.5111FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.75.41e+033.73Brokvarterer
4.96e+06https://www.airbnb.com/rooms/4961566551       100      Apartment21396Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.72.2e+03 3.34Brokvarterer
4.97e+06https://www.airbnb.com/rooms/4965011452       1100100      Apartment4394Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.31e+033.36Brokvarterer
5.01e+06https://www.airbnb.com/rooms/5005875352       15090      Apartment10896Private room1  111FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.71.82e+033.26Brokvarterer
5.02e+06https://www.airbnb.com/rooms/5023485452       1450      Apartment19696Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.655.71.85e+033.27Brokvarterer
5.1e+06 https://www.airbnb.com/rooms/5096545498       100      Apartment5092Private room1  112FALSETRUENrrebromoderate12.655.71.99e+033.3 Brokvarterer
5.2e+06 https://www.airbnb.com/rooms/5196851352       10100      Apartment4292Private room1.5101FALSETRUENrrebrostrict_14_with_grace_period12.555.71.81e+033.26Brokvarterer
5.26e+06https://www.airbnb.com/rooms/5256183751       20299      Other14390Private room1  122FALSEFALSEAmager stflexible12.655.73e+03       3.48Amager
5.27e+06https://www.airbnb.com/rooms/5266224359       100      Apartment10100Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.44e+033.16Brokvarterer
5.31e+06https://www.airbnb.com/rooms/5311361897       100      Apartment4894Private room1  112FALSETRUEIndre Bymoderate12.655.73.59e+033.55Center
5.32e+06https://www.airbnb.com/rooms/5323217352       1150100      Other29698Private room1  123TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.96e+033.29Amager
5.33e+06https://www.airbnb.com/rooms/5326654578       2300200      Apartment5294Private room1  133FALSETRUEIndre Bymoderate12.655.72.61e+033.42Center
5.33e+06https://www.airbnb.com/rooms/5332373352       100      Apartment6797Private room2  112FALSETRUEAmager Vestflexible12.655.71.41e+033.15Amager
5.35e+06https://www.airbnb.com/rooms/5350998897       12000      Apartment6494Private room1  223FALSEFALSEFrederiksbergflexible12.555.73.79e+033.58Brokvarterer
5.35e+06https://www.airbnb.com/rooms/5352770412       1100100      House6398Private room1  122TRUETRUEAmager stmoderate12.655.72.15e+033.33Amager
5.41e+06https://www.airbnb.com/rooms/5409492452       1150250      Condominium15395Private room1  222FALSETRUENrrebromoderate12.655.72.96e+033.47Brokvarterer
5.41e+06https://www.airbnb.com/rooms/5411807299       1150250      House7392Private room1  112FALSETRUEVanlsemoderate12.555.72.35e+033.37Nordvest
5.48e+06https://www.airbnb.com/rooms/5478692598       100      Apartment2496Private room1  121FALSETRUEsterbromoderate12.655.72.39e+033.38Brokvarterer
5.49e+06https://www.airbnb.com/rooms/5486840399       100      Apartment6398Private room1  112FALSETRUEIndre Byflexible12.655.71.6e+03 3.2 Center
5.49e+06https://www.airbnb.com/rooms/5493419412       1175100      Condominium8999Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.72.22e+033.35Center
5.5e+06 https://www.airbnb.com/rooms/5495140418       1250150      Apartment2594Private room1  112FALSEFALSEAmager Veststrict_14_with_grace_period12.655.62.52e+033.4 Amager
5.5e+06 https://www.airbnb.com/rooms/5503308372       11500      Apartment10998Private room1.5101TRUETRUEFrederiksbergmoderate12.555.71.64e+033.21Brokvarterer
5.51e+06https://www.airbnb.com/rooms/55072131e+03       2250300      Apartment5890Private room1  121FALSETRUEFrederiksbergmoderate12.555.74.26e+033.63Brokvarterer
5.66e+06https://www.airbnb.com/rooms/5655488638       1200400      Apartment1691Private room1  111FALSETRUEsterbrostrict_14_with_grace_period12.655.74.35e+033.64Brokvarterer
5.66e+06https://www.airbnb.com/rooms/5659371452       1150150      Apartment14998Private room1  122TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.72.56e+033.41Brokvarterer
5.7e+06 https://www.airbnb.com/rooms/5696418651       160150      Apartment1094Private room1  111FALSEFALSEIndre Bymoderate12.655.73.26e+033.51Center
5.78e+06https://www.airbnb.com/rooms/5784125399       1050      Apartment6093Private room1  112FALSETRUEIndre Byflexible12.655.71.8e+03 3.25Center
5.78e+06https://www.airbnb.com/rooms/5784408485       11800      Apartment2498Private room1  112FALSEFALSENrrebromoderate12.655.72.12e+033.33Brokvarterer
5.8e+06 https://www.airbnb.com/rooms/5800324478       200      Apartment24695Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.91e+033.28Brokvarterer
5.82e+06https://www.airbnb.com/rooms/5821972252       11000      Apartment2697Private room1  111TRUEFALSEValbyflexible12.555.71.11e+033.04West
5.83e+06https://www.airbnb.com/rooms/5830110478       350150      Apartment27296Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.96e+033.29Brokvarterer
5.84e+06https://www.airbnb.com/rooms/5837856399       10100      Apartment6594Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72e+03       3.3 Brokvarterer
5.86e+06https://www.airbnb.com/rooms/5858011379       15275      Apartment1697Private room1  112FALSETRUEValbystrict_14_with_grace_period12.555.71.87e+033.27West
5.89e+06https://www.airbnb.com/rooms/5890402419       2075      Apartment9198Private room1  112TRUETRUENrrebroflexible12.655.71.68e+033.22Brokvarterer
5.91e+06https://www.airbnb.com/rooms/5908499498       11500      Apartment13899Private room1  112TRUETRUEIndre Bymoderate12.655.72.14e+033.33Center
5.93e+06https://www.airbnb.com/rooms/5926122352       1500      Apartment10893Private room1  112FALSEFALSENrrebromoderate12.655.71.46e+033.16Brokvarterer
5.95e+06https://www.airbnb.com/rooms/5950433598       10250      Apartment11992Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.39e+033.53Center
5.99e+06https://www.airbnb.com/rooms/5987411339       1100175      Apartment18395Private room1  111TRUETRUEsterbroflexible12.655.72.16e+033.33Brokvarterer
6.01e+06https://www.airbnb.com/rooms/6007570352       1150200      Apartment3499Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.655.72.36e+033.37Brokvarterer
6.01e+06https://www.airbnb.com/rooms/6011562678       5750      Apartment4798Private room1  112FALSETRUEAmager stmoderate12.655.72.79e+033.45Amager
6.03e+06https://www.airbnb.com/rooms/6028651452       100      Apartment7991Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.81e+033.26Brokvarterer
6.04e+06https://www.airbnb.com/rooms/6035346598       13000      Apartment1596Private room1  112FALSEFALSEIndre Byflexible12.655.72.69e+033.43Center
6.1e+06 https://www.airbnb.com/rooms/6096125272       110050      Apartment4097Private room1  111FALSETRUEFrederiksbergmoderate12.555.71.39e+033.14Brokvarterer
6.11e+06https://www.airbnb.com/rooms/6111481498       2150700      Apartment1694Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.14e+033.33Brokvarterer
6.14e+06https://www.airbnb.com/rooms/6143381379       1100100      Apartment12897Private room1  112FALSEFALSEBispebjergflexible12.555.72.02e+033.3 Nordvest
6.15e+06https://www.airbnb.com/rooms/6148669352       2100100      Apartment11193Private room1  113FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.51e+033.18Brokvarterer
6.16e+06https://www.airbnb.com/rooms/6158131365       10224      Apartment6697Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.36e+033.37Brokvarterer
6.19e+06https://www.airbnb.com/rooms/6188163412       2075      Apartment1595Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.65e+033.22Brokvarterer
6.21e+06https://www.airbnb.com/rooms/6206614651       11500      Apartment8296Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.75e+033.44Brokvarterer
6.25e+06https://www.airbnb.com/rooms/6246994352       10200      Apartment26100Private room1  112TRUEFALSEFrederiksbergstrict_14_with_grace_period12.555.72.21e+033.34Brokvarterer
6.25e+06https://www.airbnb.com/rooms/6251488551       11500      Apartment4493Private room1  101TRUEFALSENrrebromoderate12.655.72.35e+033.37Brokvarterer
6.27e+06https://www.airbnb.com/rooms/6265316591       1150200      Other1891Private room1  232FALSEFALSENrrebrostrict_14_with_grace_period12.555.73.31e+033.52Brokvarterer
6.41e+06https://www.airbnb.com/rooms/6412978498       275200      Apartment19993Private room1  123TRUETRUENrrebromoderate12.655.72.07e+033.32Brokvarterer
6.42e+06https://www.airbnb.com/rooms/6421166352       100      Apartment1798Private room1  112FALSETRUENrrebromoderate12.555.71.41e+033.15Brokvarterer
6.43e+06https://www.airbnb.com/rooms/6427286545       11150      House2194Private room1  111FALSETRUEBrnshj-Husummoderate12.555.72.3e+03 3.36West
6.43e+06https://www.airbnb.com/rooms/6428857498       3250280      Apartment12394Private room1  135TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.24e+033.35Brokvarterer
6.43e+06https://www.airbnb.com/rooms/6431178551       21250      Apartment9299Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.33e+033.37Brokvarterer
6.48e+06https://www.airbnb.com/rooms/6484100352       100      Apartment3194Private room1  111FALSETRUEBispebjergflexible12.555.71.41e+033.15Nordvest
6.55e+06https://www.airbnb.com/rooms/6549452399       11000      Apartment1395Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.7e+03 3.23Center
6.58e+06https://www.airbnb.com/rooms/6579997352       11200      Apartment1999Private room1  112FALSETRUEAmager stflexible12.655.71.53e+033.18Amager
6.6e+06 https://www.airbnb.com/rooms/6600984246       10120      Condominium10592Private room1  111FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.46e+033.17Amager
6.62e+06https://www.airbnb.com/rooms/6621330365       11500      Apartment12496Private room1  111TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.61e+033.21Amager
6.65e+06https://www.airbnb.com/rooms/6650539618       11500      Apartment2593Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.72.62e+033.42Brokvarterer
6.66e+06https://www.airbnb.com/rooms/6656623299       100      Apartment1295Private room1  111FALSETRUENrrebrostrict_14_with_grace_period12.555.71.2e+03 3.08Brokvarterer
6.67e+06https://www.airbnb.com/rooms/6668097372       100      Apartment4897Private room1  111FALSEFALSEFrederiksbergmoderate12.555.71.49e+033.17Brokvarterer
6.71e+06https://www.airbnb.com/rooms/6708024399       100      Apartment1494Private room1  112FALSETRUENrrebroflexible12.555.71.6e+03 3.2 Brokvarterer
6.74e+06https://www.airbnb.com/rooms/6743353385       1400      Apartment9796Private room1  112FALSETRUENrrebroflexible12.555.71.58e+033.2 Brokvarterer
6.76e+06https://www.airbnb.com/rooms/6755209392       2100100      Apartment11590Private room0.5113FALSETRUEsterbromoderate12.655.71.67e+033.22Brokvarterer
6.81e+06https://www.airbnb.com/rooms/6810924452       11000      Apartment10693Private room1  112FALSETRUENrrebromoderate12.655.71.91e+033.28Brokvarterer
6.82e+06https://www.airbnb.com/rooms/6822153697       100      Apartment24098Private room1  102TRUETRUEFrederiksbergmoderate12.655.72.79e+033.45Brokvarterer
6.85e+06https://www.airbnb.com/rooms/6850687359       100      Condominium3994Private room1  112FALSETRUENrrebromoderate12.655.71.44e+033.16Brokvarterer
6.88e+06https://www.airbnb.com/rooms/6875859419       100      Apartment2193Private room1  112FALSETRUEIndre Byflexible12.655.71.68e+033.22Center
6.9e+06 https://www.airbnb.com/rooms/6898141352       150100      Apartment1995Private room1  111FALSETRUEAmager stmoderate12.655.71.86e+033.27Amager
6.91e+06https://www.airbnb.com/rooms/6908331312       1150100      Apartment2593Private room1  112FALSETRUEBispebjergstrict_14_with_grace_period12.555.71.8e+03 3.25Nordvest
6.91e+06https://www.airbnb.com/rooms/6910462319       1050      Apartment10100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.48e+033.17Brokvarterer
6.92e+06https://www.airbnb.com/rooms/6916918551       100      Apartment3296Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.2e+03 3.34Brokvarterer
6.94e+06https://www.airbnb.com/rooms/6942180531       250150      Apartment21791Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.17e+033.34Brokvarterer
6.95e+06https://www.airbnb.com/rooms/6948866452       219075      Apartment2499Private room1  112FALSETRUEValbymoderate12.555.72e+03       3.3 West
6.95e+06https://www.airbnb.com/rooms/6954287372       2150200      Apartment1397Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.64e+033.21Brokvarterer
6.97e+06https://www.airbnb.com/rooms/6972756538       100      Apartment3896Private room1  111TRUETRUEIndre Byflexible12.655.72.15e+033.33Center
7.05e+06https://www.airbnb.com/rooms/7051763399       215035      Apartment10896Private room1  112TRUETRUENrrebromoderate12.555.71.75e+033.24Brokvarterer
7.07e+06https://www.airbnb.com/rooms/7068872578       10150      Apartment6299Private room1.5111FALSETRUEsterbromoderate12.655.72.91e+033.46Brokvarterer
7.12e+06https://www.airbnb.com/rooms/7121691392       1150100      Apartment6698Private room1  112TRUETRUEsterbroflexible12.655.72.12e+033.33Brokvarterer
7.14e+06https://www.airbnb.com/rooms/7139250531       10253      Apartment3992Private room1  112FALSETRUEAmager Vestmoderate12.655.73.14e+033.5 Amager
7.14e+06https://www.airbnb.com/rooms/7140873817       11120      Apartment2093Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.63.38e+033.53Brokvarterer
7.14e+06https://www.airbnb.com/rooms/7143090399       11000      Apartment3096Private room1  112FALSETRUEAmager stflexible12.655.71.7e+03 3.23Amager
7.16e+06https://www.airbnb.com/rooms/7161197425       12500      Apartment12095Private room0.5111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.95e+033.29Brokvarterer
7.2e+06 https://www.airbnb.com/rooms/7204874352       1200200      Apartment3695Private room1  112FALSETRUENrrebroflexible12.555.72.41e+033.38Brokvarterer
7.21e+06https://www.airbnb.com/rooms/7207942352       42500      Apartment8896Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.655.71.66e+033.22Brokvarterer
7.24e+06https://www.airbnb.com/rooms/7241592292       2100100      Apartment3490Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.27e+033.1 Brokvarterer
7.25e+06https://www.airbnb.com/rooms/7249487531       100      Apartment5996Private room1  112FALSETRUENrrebromoderate12.555.72.12e+033.33Brokvarterer
7.26e+06https://www.airbnb.com/rooms/7258234498       100      Apartment18093Private room1  122FALSETRUEAmager ststrict_14_with_grace_period12.655.71.99e+033.3 Amager
7.26e+06https://www.airbnb.com/rooms/7259278399       2100100      Apartment5196Private room1  112FALSETRUEValbystrict_14_with_grace_period12.555.71.7e+03 3.23West
7.29e+06https://www.airbnb.com/rooms/7285771252       2200100      Apartment1090Private room1  112FALSETRUEBispebjergflexible12.555.71.21e+033.08Nordvest
7.3e+06 https://www.airbnb.com/rooms/7304999458       1400200      Apartment1191Private room1  112FALSETRUEIndre Bymoderate12.655.73.03e+033.48Center
7.34e+06https://www.airbnb.com/rooms/7336136226       1125150      Apartment1395Private room1  111TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.63e+033.21Nordvest
7.36e+06https://www.airbnb.com/rooms/7357665452       1500      Apartment1896Private room1.5112FALSETRUEsterbromoderate12.655.71.86e+033.27Brokvarterer
7.36e+06https://www.airbnb.com/rooms/7359510465       100      Apartment23999Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.86e+033.27Brokvarterer
7.36e+06https://www.airbnb.com/rooms/7362292598       100      Apartment9398Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.39e+033.38Brokvarterer
7.38e+06https://www.airbnb.com/rooms/7381830498       200      Apartment1599Private room1  112FALSETRUENrrebroflexible12.555.71.99e+033.3 Brokvarterer
7.38e+06https://www.airbnb.com/rooms/7383001551       2500250      Apartment2691Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.7e+03 3.43Brokvarterer
7.42e+06https://www.airbnb.com/rooms/7415202551       13000      Apartment7396Private room1  102TRUEFALSEFrederiksbergflexible12.655.72.5e+03 3.4 Brokvarterer
7.46e+06https://www.airbnb.com/rooms/7464417352       100      Apartment12899Private room1  111TRUETRUEsterbroflexible12.655.71.41e+033.15Brokvarterer
7.49e+06https://www.airbnb.com/rooms/7487775418       2250350      Apartment3798Private room1  112TRUETRUENrrebromoderate12.555.71.92e+033.28Brokvarterer
7.5e+06 https://www.airbnb.com/rooms/7499206458       11500      Other30597Private room1  112TRUETRUEAmager Vestmoderate12.655.71.98e+033.3 Amager
7.51e+06https://www.airbnb.com/rooms/7507730246       10201      Apartment1292Private room1  111TRUETRUEAmager ststrict_14_with_grace_period12.655.71.79e+033.25Amager
7.54e+06https://www.airbnb.com/rooms/7539097445       10149      Condominium2892Private room1  122FALSETRUEIndre Bymoderate12.655.72.38e+033.38Center
7.55e+06https://www.airbnb.com/rooms/7547266352       2150100      Condominium3994Private room1  113FALSEFALSEBispebjergmoderate12.555.71.56e+033.19Nordvest
7.55e+06https://www.airbnb.com/rooms/75503791.5e+03 11e+031.5e+03Apartment11100Private room1  111FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.71.3e+04 4.11Brokvarterer
7.56e+06https://www.airbnb.com/rooms/7561549472       11120      Condominium1195Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.72e+03       3.3 Brokvarterer
7.65e+06https://www.airbnb.com/rooms/7653972246       12950      Apartment4791Private room1  111FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.71.28e+033.11Brokvarterer
7.66e+06https://www.airbnb.com/rooms/7660343339       219089      Apartment1090Private room1  122FALSETRUENrrebromoderate12.555.71.55e+033.19Brokvarterer
7.67e+06https://www.airbnb.com/rooms/7668308598       10216      Apartment10499Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.73.26e+033.51Brokvarterer
7.7e+06 https://www.airbnb.com/rooms/7703939598       12000      Apartment1694Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.59e+033.41Brokvarterer
7.72e+06https://www.airbnb.com/rooms/7721166206       10261      Townhouse1790Private room1  112FALSETRUEBispebjergmoderate12.555.71.87e+033.27Nordvest
7.73e+06https://www.airbnb.com/rooms/7731521372       100      Apartment10895Private room1  111TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.49e+033.17Brokvarterer
7.75e+06https://www.airbnb.com/rooms/7746152352       175100      Apartment6799Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.88e+033.27Amager
7.78e+06https://www.airbnb.com/rooms/7781967359       2100149      Apartment10898Private room1  112TRUEFALSEValbystrict_14_with_grace_period12.555.71.54e+033.19West
7.79e+06https://www.airbnb.com/rooms/7787746399       20100      Apartment7997Private room1  112TRUETRUEValbyflexible12.555.71.6e+03 3.2 West
7.82e+06https://www.airbnb.com/rooms/7820703598       1950      Apartment42100Private room1  111TRUETRUEIndre Byflexible12.655.72.49e+033.4 Center
7.83e+06https://www.airbnb.com/rooms/7829510252       10100      Apartment1193Private room1  112FALSETRUEBispebjergmoderate12.555.71.41e+033.15Nordvest
7.85e+06https://www.airbnb.com/rooms/7853704419       1035      Apartment2896Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.82e+033.26Brokvarterer
7.88e+06https://www.airbnb.com/rooms/7881239525       100      Apartment1792Private room1  112FALSETRUEFrederiksbergflexible12.555.72.1e+03 3.32Brokvarterer
7.9e+06 https://www.airbnb.com/rooms/7895375312       1100150      Apartment5595Private room1  112FALSETRUENrrebromoderate12.555.71.95e+033.29Brokvarterer
8.02e+06https://www.airbnb.com/rooms/8019633591       20225      House20097Private room1  246TRUETRUEValbyflexible12.555.72.36e+033.37West
8.02e+06https://www.airbnb.com/rooms/8023598452       1150250      Apartment2497Private room1  112FALSETRUENrrebroflexible12.655.72.96e+033.47Brokvarterer
8.04e+06https://www.airbnb.com/rooms/8040088299       100      House4098Private room1  111TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.2e+03 3.08Nordvest
8.07e+06https://www.airbnb.com/rooms/8069900525       100      Apartment11597Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.1e+03 3.32Amager
8.07e+06https://www.airbnb.com/rooms/8074752399       10100      Apartment15997Private room1  114TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72e+03       3.3 Brokvarterer
8.12e+06https://www.airbnb.com/rooms/8122709286       12000      Other3598Private room1  111FALSEFALSEAmager Vestmoderate12.655.61.34e+033.13Amager
8.14e+06https://www.airbnb.com/rooms/8138658399       100      Apartment11794Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.6e+03 3.2 Brokvarterer
8.15e+06https://www.airbnb.com/rooms/8146023319       1050      Apartment2195Private room1  112FALSETRUEsterbroflexible12.655.71.48e+033.17Brokvarterer
8.16e+06https://www.airbnb.com/rooms/8155601352       11000      Apartment1296Private room1  112FALSETRUENrrebroflexible12.555.71.51e+033.18Brokvarterer
8.17e+06https://www.airbnb.com/rooms/8165026399       10100      Apartment4198Private room1  124TRUETRUENrrebroflexible12.555.72e+03       3.3 Brokvarterer
8.2e+06 https://www.airbnb.com/rooms/8199047299       10150      Townhouse1491Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.8e+03 3.25Brokvarterer
8.2e+06 https://www.airbnb.com/rooms/8199149445       11500      Apartment5390Private room1  111FALSEFALSEIndre Byflexible12.655.71.93e+033.29Center
8.21e+06https://www.airbnb.com/rooms/8209968551       11750      Apartment3197Private room1  112FALSETRUEIndre Byflexible12.655.72.38e+033.38Center
8.23e+06https://www.airbnb.com/rooms/8234588850       100      Apartment12798Private room1  122TRUETRUEIndre Byflexible12.655.73.4e+03 3.53Center
8.28e+06https://www.airbnb.com/rooms/8280613551       100      Apartment10198Private room1.5122TRUETRUEAmager stflexible12.655.72.2e+03 3.34Amager
8.32e+06https://www.airbnb.com/rooms/8320240299       18080      Apartment4893Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.6e+03 3.2 Brokvarterer
8.36e+06https://www.airbnb.com/rooms/8357491452       1195150      Apartment7299Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.6e+03 3.42Brokvarterer
8.37e+06https://www.airbnb.com/rooms/8368550252       100      Apartment1090Private room1  122FALSETRUEVanlseflexible12.555.71.01e+033   Nordvest
8.4e+06 https://www.airbnb.com/rooms/8395049332       200      Apartment1596Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.33e+033.12Center
8.42e+06https://www.airbnb.com/rooms/8419089266       145230      Condominium6196Private room2  102TRUETRUEIndre Bymoderate12.655.72.03e+033.31Center
8.43e+06https://www.airbnb.com/rooms/8432170299       100      Apartment1292Private room1  112FALSETRUENrrebroflexible12.555.71.2e+03 3.08Brokvarterer
8.46e+06https://www.airbnb.com/rooms/8463755252       1100100      Apartment8294Private room1  121FALSETRUEsterbrostrict_14_with_grace_period12.655.71.51e+033.18Brokvarterer
8.49e+06https://www.airbnb.com/rooms/8494250186       11490      Apartment1092Private room1  112FALSETRUEIndre Bymoderate12.655.7893       2.95Center
8.5e+06 https://www.airbnb.com/rooms/8501658372       15050      Apartment2699Private room1.5112TRUETRUENrrebromoderate12.555.71.74e+033.24Brokvarterer
8.52e+06https://www.airbnb.com/rooms/8518289498       100      Apartment6098Private room1.5111TRUETRUENrrebroflexible12.555.71.99e+033.3 Brokvarterer
8.53e+06https://www.airbnb.com/rooms/8530285432       1114125      Apartment8296Private room1  112FALSEFALSEAmager stflexible12.655.62.34e+033.37Amager
8.56e+06https://www.airbnb.com/rooms/8562303671       14000      Apartment3099Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.73.08e+033.49Brokvarterer
8.56e+06https://www.airbnb.com/rooms/8563559578       100      Apartment14396Private room1  112TRUEFALSEIndre Byflexible12.655.72.31e+033.36Center
8.63e+06https://www.airbnb.com/rooms/8628762352       100      Condominium5195Private room1  111FALSETRUEAmager stflexible12.655.71.41e+033.15Amager
8.67e+06https://www.airbnb.com/rooms/8667742399       100      Apartment2498Private room2  112FALSETRUEIndre Byflexible12.655.71.6e+03 3.2 Center
8.69e+06https://www.airbnb.com/rooms/8693292339       100      House2799Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.61.36e+033.13Brokvarterer
8.71e+06https://www.airbnb.com/rooms/8705878332       100      Apartment3596Private room1  111TRUEFALSENrrebromoderate12.555.71.33e+033.12Brokvarterer
8.75e+06https://www.airbnb.com/rooms/8747872498       160100      Apartment7194Private room1  112FALSEFALSENrrebroflexible12.655.72.45e+033.39Brokvarterer
8.77e+06https://www.airbnb.com/rooms/8769969399       2150220      Apartment14094Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.75e+033.24Brokvarterer
8.77e+06https://www.airbnb.com/rooms/8770563339       11500      Other32496Private room1  112TRUETRUEAmager Vestmoderate12.655.71.51e+033.18Amager
8.81e+06https://www.airbnb.com/rooms/8805154332       2100150      Apartment17997Private room1.5132TRUETRUEFrederiksbergflexible12.555.71.43e+033.15Brokvarterer
8.87e+06https://www.airbnb.com/rooms/8874070345       1130125      Apartment2492Private room1  112FALSETRUEBispebjergstrict_14_with_grace_period12.555.72.01e+033.3 Nordvest
8.88e+06https://www.airbnb.com/rooms/8876954598       1150100      Apartment1398Private room1  112TRUETRUEIndre Byflexible12.655.72.94e+033.47Center
8.88e+06https://www.airbnb.com/rooms/8883501545       20150      House9898Private room1  123TRUETRUEValbyflexible12.555.72.18e+033.34West
8.91e+06https://www.airbnb.com/rooms/8905294751       20100      Apartment2994Private room1  133TRUETRUENrrebrostrict_14_with_grace_period12.655.73e+03       3.48Brokvarterer
8.91e+06https://www.airbnb.com/rooms/8911684312       11000      Apartment2498Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.35e+033.13Brokvarterer
8.93e+06https://www.airbnb.com/rooms/8928467598       260200      Apartment3591Private room1.5102TRUETRUEIndre Byflexible12.655.72.45e+033.39Center
8.98e+06https://www.airbnb.com/rooms/8978187498       150100      Apartment15196Private room1  112FALSEFALSEIndre Byflexible12.655.72.44e+033.39Center
8.98e+06https://www.airbnb.com/rooms/8984302498       100      Apartment1893Private room1  112FALSETRUEsterbromoderate12.655.71.99e+033.3 Brokvarterer
8.99e+06https://www.airbnb.com/rooms/8986360751       15000      Apartment8998Private room1  112TRUETRUEIndre Bymoderate12.655.73.5e+03 3.54Center
9e+06       https://www.airbnb.com/rooms/9001456352       20100      Apartment1496Private room1  123FALSETRUENrrebroflexible12.555.71.41e+033.15Brokvarterer
9e+06       https://www.airbnb.com/rooms/9003896286       1100140      Apartment17298Private room1  122TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.61.8e+03 3.26Brokvarterer
9.01e+06https://www.airbnb.com/rooms/9006017379       11020      Apartment23298Private room1  111TRUETRUENrrebroflexible12.655.71.62e+033.21Brokvarterer
9.02e+06https://www.airbnb.com/rooms/9024879525       11490      Apartment6799Private room1  112FALSETRUEAmager Vestmoderate12.655.72.25e+033.35Amager
9.04e+06https://www.airbnb.com/rooms/9037095525       100      Apartment5294Private room1  112TRUETRUEAmager Vestmoderate12.655.72.1e+03 3.32Amager
9.05e+06https://www.airbnb.com/rooms/9054009525       10216      Apartment7699Private room1  112TRUETRUEAmager Vestflexible12.655.72.96e+033.47Amager
9.11e+06https://www.airbnb.com/rooms/9106535399       1750      Apartment2696Private room1  112FALSEFALSEAmager Vestmoderate12.655.61.67e+033.22Amager
9.11e+06https://www.airbnb.com/rooms/9106771551       125050      Apartment11090Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.72.65e+033.42Amager
9.13e+06https://www.airbnb.com/rooms/9132109272       1200100      Apartment1596Private room1  122TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.61.69e+033.23Brokvarterer
9.14e+06https://www.airbnb.com/rooms/9141811286       100      Apartment2897Private room1  111TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.14e+033.06Amager
9.19e+06https://www.airbnb.com/rooms/9192682525       1110190      Apartment20093Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.97e+033.47Center
9.21e+06https://www.airbnb.com/rooms/9206621498       1050      Apartment1090Private room1  112FALSETRUEBispebjergflexible12.555.72.19e+033.34Nordvest
9.25e+06https://www.airbnb.com/rooms/9253274438       12980      Apartment144100Private room1  112TRUETRUEsterbromoderate12.655.72.05e+033.31Brokvarterer
9.31e+06https://www.airbnb.com/rooms/9314963306       10200      Apartment7698Private room1  111TRUETRUEsterbroflexible12.655.72.02e+033.31Brokvarterer
9.34e+06https://www.airbnb.com/rooms/9337861246       1200180      House2499Private room1  112FALSEFALSEAmager Vestmoderate12.655.61.9e+03 3.28Amager
9.38e+06https://www.airbnb.com/rooms/9378415339       14000      Townhouse4193Private room1  112FALSETRUEsterbromoderate12.655.71.76e+033.24Brokvarterer
9.41e+06https://www.airbnb.com/rooms/9407356797       10150      Apartment1799Private room1  112FALSEFALSEAmager stmoderate12.655.73.79e+033.58Amager
9.45e+06https://www.airbnb.com/rooms/9446839299       100      Apartment1195Private room1  112FALSETRUENrrebroflexible12.555.71.2e+03 3.08Brokvarterer
9.5e+06 https://www.airbnb.com/rooms/9499979751       2150450      Apartment3599Private room1  113FALSETRUEFrederiksbergflexible12.555.73.15e+033.5 Brokvarterer
9.5e+06 https://www.airbnb.com/rooms/9504995352       1300150      Apartment2193Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.72.31e+033.36Brokvarterer
9.51e+06https://www.airbnb.com/rooms/9510387272       100      Apartment4694Private room1  111FALSETRUEVanlsemoderate12.555.71.09e+033.04Nordvest
9.57e+06https://www.airbnb.com/rooms/9573456697       1150300      Apartment4395Private room1  112FALSETRUEIndre Byflexible12.655.74.14e+033.62Center
9.59e+06https://www.airbnb.com/rooms/9591063352       130050      Apartment4696Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.91e+033.28Amager
9.59e+06https://www.airbnb.com/rooms/9592158458       1100150      Apartment3399Private room1  111TRUETRUEIndre Bymoderate12.655.72.53e+033.4 Center
9.63e+06https://www.airbnb.com/rooms/9625136405       2220100      Apartment16497Private room1  112TRUETRUEAmager Vestmoderate12.655.71.84e+033.26Amager
9.68e+06https://www.airbnb.com/rooms/9682997252       101e+03      Apartment11495Private room1  111FALSEFALSEFrederiksbergmoderate12.555.75.01e+033.7 Brokvarterer
9.7e+06 https://www.airbnb.com/rooms/9704196399       100      Apartment9696Private room1  112FALSETRUEsterbroflexible12.655.71.6e+03 3.2 Brokvarterer
9.71e+06https://www.airbnb.com/rooms/9711772379       1400400      Apartment2394Private room1  211TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.52e+033.55Center
9.77e+06https://www.airbnb.com/rooms/9766235412       100      Apartment2895Private room1  102TRUETRUEIndre Bymoderate12.655.71.65e+033.22Center
9.77e+06https://www.airbnb.com/rooms/9766329518       100      Apartment28100Private room1  112TRUETRUEIndre Byflexible12.655.72.07e+033.32Center
9.79e+06https://www.airbnb.com/rooms/9792124372       13501e+03      Apartment2896Private room1  111FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.75.84e+033.77Brokvarterer
9.82e+06https://www.airbnb.com/rooms/9823287352       150300      House15594Private room1.5346FALSETRUEAmager stflexible12.655.62.66e+033.42Amager
9.83e+06https://www.airbnb.com/rooms/9832836791       120070      Apartment11299Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.73.64e+033.56Brokvarterer
9.85e+06https://www.airbnb.com/rooms/9849017159       1050      Apartment1094Private room1  111FALSEFALSEBispebjergflexible12.555.7836       2.92Nordvest
9.88e+06https://www.airbnb.com/rooms/9877245419       1050      Apartment17096Private room1  123FALSETRUENrrebrostrict_14_with_grace_period12.555.71.88e+033.27Brokvarterer
9.92e+06https://www.airbnb.com/rooms/9917282492       1150120      Apartment11099Private room1  112TRUETRUEAmager Vestmoderate12.655.62.6e+03 3.41Amager
9.96e+06https://www.airbnb.com/rooms/9963567478       100      Condominium2094Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.91e+033.28Brokvarterer
9.97e+06https://www.airbnb.com/rooms/9967102352       1200150      Apartment9095Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.21e+033.34Brokvarterer
1e+07       https://www.airbnb.com/rooms/10003912272       10100      Apartment1696Private room1  112FALSETRUENrrebromoderate12.555.71.49e+033.17Brokvarterer
1e+07       https://www.airbnb.com/rooms/10038521299       280140      Apartment8692Private room1  112FALSETRUEValbyflexible12.555.61.28e+033.11West
1.01e+07https://www.airbnb.com/rooms/10062346425       12500      Apartment4196Private room1  112FALSETRUEAmager Vestflexible12.655.71.95e+033.29Amager
1.02e+07https://www.airbnb.com/rooms/10153993299       14050      Apartment1297Private room1  112FALSETRUEsterbroflexible12.655.71.44e+033.16Brokvarterer
1.02e+07https://www.airbnb.com/rooms/10216837299       100      House1694Private room1.5101TRUETRUEBrnshj-Husumstrict_14_with_grace_period12.555.71.2e+03 3.08West
1.03e+07https://www.airbnb.com/rooms/10304147252       1400      Apartment1798Private room1  112FALSETRUEBispebjergmoderate12.555.71.05e+033.02Nordvest
1.03e+07https://www.airbnb.com/rooms/10332346352       120040      Apartment5696Private room1  112FALSETRUEIndre Bymoderate12.655.71.77e+033.25Center
1.04e+07https://www.airbnb.com/rooms/10382071598       100      Apartment4593Private room1  112FALSEFALSEAmager ststrict_14_with_grace_period12.655.72.39e+033.38Amager
1.04e+07https://www.airbnb.com/rooms/10406326498       2250200      Apartment8199Private room1  324FALSETRUEAmager Vestmoderate12.655.72.24e+033.35Amager
1.04e+07https://www.airbnb.com/rooms/10414951292       12500      Townhouse7297Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.71.42e+033.15Brokvarterer
1.04e+07https://www.airbnb.com/rooms/10435392292       12500      Condominium8997Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.71.42e+033.15Brokvarterer
1.04e+07https://www.airbnb.com/rooms/10435787292       12500      Condominium2796Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.42e+033.15Brokvarterer
1.05e+07https://www.airbnb.com/rooms/10487990399       100      Apartment1492Private room1  112FALSETRUEBispebjergflexible12.555.71.6e+03 3.2 Nordvest
1.05e+07https://www.airbnb.com/rooms/10494140724       11950      Apartment2397Private room1  112FALSEFALSEIndre Bymoderate12.655.73.09e+033.49Center
1.05e+07https://www.airbnb.com/rooms/10511101465       100      Apartment1790Private room1  112FALSETRUEIndre Byflexible12.655.71.86e+033.27Center
1.06e+07https://www.airbnb.com/rooms/10604516485       2374336      House2491Private room1  122FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.72.31e+033.36West
1.06e+07https://www.airbnb.com/rooms/10645628352       165150      House7797Private room1  123FALSETRUEAmager Vestmoderate12.655.72.07e+033.32Amager
1.06e+07https://www.airbnb.com/rooms/106472391.25e+03100      Apartment5095Private room1  112FALSEFALSEIndre Byflexible12.655.75e+03       3.7 Center
1.06e+07https://www.airbnb.com/rooms/10648645219       100      Apartment1495Private room1  112FALSEFALSEBispebjergstrict_14_with_grace_period12.555.7876       2.94Nordvest
1.07e+07https://www.airbnb.com/rooms/10663931352       200      Apartment2896Private room1  112FALSETRUEAmager Vestmoderate12.655.71.41e+033.15Amager
1.07e+07https://www.airbnb.com/rooms/10735518352       20130      House20595Private room1  123FALSETRUEVanlsemoderate12.555.71.41e+033.15Nordvest
1.08e+07https://www.airbnb.com/rooms/10803557498       1150200      Apartment1293Private room1  112FALSETRUEsterbromoderate12.655.72.94e+033.47Brokvarterer
1.08e+07https://www.airbnb.com/rooms/108202401e+03       2250250      Other28692Private room1  124FALSETRUEVesterbro-Kongens Enghaveflexible12.555.74.26e+033.63Brokvarterer
1.08e+07https://www.airbnb.com/rooms/10830961292       11750      House4697Private room1  111TRUETRUEFrederiksbergflexible12.555.71.34e+033.13Brokvarterer
1.09e+07https://www.airbnb.com/rooms/10854830551       25050      Apartment8096Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.25e+033.35Brokvarterer
1.1e+07 https://www.airbnb.com/rooms/10964802199       1350150      Condominium1597Private room1  122FALSETRUEVanlsestrict_14_with_grace_period12.555.71.75e+033.24Nordvest
1.1e+07 https://www.airbnb.com/rooms/11004380339       12000      Apartment17100Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.56e+033.19Brokvarterer
1.1e+07 https://www.airbnb.com/rooms/11014124299       1200200      Apartment3794Private room1  111TRUEFALSENrrebrostrict_14_with_grace_period12.555.72.2e+03 3.34Brokvarterer
1.1e+07 https://www.airbnb.com/rooms/11039572286       1150150      Apartment3795Private room1.5002FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.89e+033.28Brokvarterer
1.12e+07https://www.airbnb.com/rooms/11159048425       135100      Apartment4195Private room1  102FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.14e+033.33Brokvarterer
1.12e+07https://www.airbnb.com/rooms/11183475551       25000      Apartment2697Private room1  123FALSEFALSEIndre Bystrict_14_with_grace_period12.655.72.7e+03 3.43Center
1.12e+07https://www.airbnb.com/rooms/11185777452       100      Apartment1997Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.71.81e+033.26Brokvarterer
1.12e+07https://www.airbnb.com/rooms/11246996299       10199      Apartment2596Private room1  112FALSETRUEAmager Vestflexible12.655.71.99e+033.3 Amager
1.12e+07https://www.airbnb.com/rooms/11247498698       100      Apartment2095Private room1  122FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.62.79e+033.45Brokvarterer
1.13e+07https://www.airbnb.com/rooms/11250500399       134150      Apartment5093Private room1  012FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.23e+033.35Brokvarterer
1.13e+07https://www.airbnb.com/rooms/11285942239       12320      Apartment1193Private room1  111FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.19e+033.07Amager
1.13e+07https://www.airbnb.com/rooms/11286328239       12320      Apartment1090Private room1  111FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.19e+033.07Amager
1.13e+07https://www.airbnb.com/rooms/11307997452       2150100      Apartment2291Private room1.5112FALSEFALSEVanlsemoderate12.555.71.96e+033.29Nordvest
1.13e+07https://www.airbnb.com/rooms/11314601478       20200      Apartment14192Private room1  245FALSETRUEAmager Vestflexible12.655.61.91e+033.28Amager
1.13e+07https://www.airbnb.com/rooms/11339117452       1350200      Apartment4398Private room1  112TRUETRUEAmager Vestmoderate12.655.72.96e+033.47Amager
1.13e+07https://www.airbnb.com/rooms/11348404239       2150180      Apartment11598Private room1  112TRUETRUEFrederiksbergmoderate12.555.71.11e+033.04Brokvarterer
1.14e+07https://www.airbnb.com/rooms/11394770399       1300100      Apartment1196Private room1  113FALSETRUENrrebromoderate12.655.72.3e+03 3.36Brokvarterer
1.14e+07https://www.airbnb.com/rooms/11437497492       100      Apartment12396Private room1  112FALSETRUEIndre Byflexible12.655.71.97e+033.29Center
1.15e+07https://www.airbnb.com/rooms/11488892452       100      Apartment2499Private room1  111TRUETRUEsterbrostrict_14_with_grace_period12.655.71.81e+033.26Brokvarterer
1.15e+07https://www.airbnb.com/rooms/11523867272       100      Apartment6299Private room1  111TRUETRUENrrebroflexible12.555.71.09e+033.04Brokvarterer
1.17e+07https://www.airbnb.com/rooms/11670005399       100      Apartment2590Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.6e+03 3.2 West
1.17e+07https://www.airbnb.com/rooms/11694587299       2300100      Apartment1395Private room1  112FALSETRUENrrebromoderate12.555.71.5e+03 3.17Brokvarterer
1.17e+07https://www.airbnb.com/rooms/11713496292       14989      Apartment1096Private room1  112FALSETRUEValbystrict_14_with_grace_period12.555.61.57e+033.2 West
1.17e+07https://www.airbnb.com/rooms/11717384153       100      Apartment1092Private room1  112FALSETRUENrrebroflexible12.655.7612       2.79Brokvarterer
1.18e+07https://www.airbnb.com/rooms/11778686359       1055      Apartment4192Private room1  122FALSEFALSEAmager stflexible12.655.71.66e+033.22Amager
1.18e+07https://www.airbnb.com/rooms/11832827598       13500      Apartment2996Private room1  112TRUETRUEAmager Vestflexible12.655.72.74e+033.44Amager
1.18e+07https://www.airbnb.com/rooms/11840751365       111188      Apartment8496Private room1  112TRUETRUEAmager stflexible12.655.71.92e+033.28Amager
1.19e+07https://www.airbnb.com/rooms/11877577412       11000      Apartment9596Private room1  112TRUETRUEsterbromoderate12.655.71.75e+033.24Brokvarterer
1.19e+07https://www.airbnb.com/rooms/11905167598       3200200      Apartment14100Private room1  335FALSETRUEsterbroflexible12.655.72.59e+033.41Brokvarterer
1.19e+07https://www.airbnb.com/rooms/11943287452       100      Apartment11100Private room1  112FALSEFALSEIndre Bymoderate12.655.71.81e+033.26Center
1.19e+07https://www.airbnb.com/rooms/11943920292       1100100      Apartment3094Private room1  112FALSEFALSEBispebjergflexible12.555.71.67e+033.22Nordvest
1.2e+07 https://www.airbnb.com/rooms/11952878352       2050      Apartment2195Private room1  122FALSEFALSEsterbroflexible12.655.71.41e+033.15Brokvarterer
1.2e+07 https://www.airbnb.com/rooms/11988168598       2200200      Apartment8696Private room1  112TRUEFALSENrrebromoderate12.655.72.59e+033.41Brokvarterer
1.2e+07 https://www.airbnb.com/rooms/12006948399       1500      Apartment12100Private room1  112FALSETRUEAmager Vestflexible12.655.71.65e+033.22Amager
1.2e+07 https://www.airbnb.com/rooms/12028968299       20100      House3793Private room0.5112FALSETRUEVanlsemoderate12.555.71.2e+03 3.08Nordvest
1.2e+07 https://www.airbnb.com/rooms/12031371299       1150100      Apartment12598Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.61.75e+033.24Brokvarterer
1.21e+07https://www.airbnb.com/rooms/12067053698       1500200      Apartment7995Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.74.09e+033.61Center
1.21e+07https://www.airbnb.com/rooms/12091627399       1150100      Apartment14198Private room1  111TRUETRUEsterbromoderate12.655.72.15e+033.33Brokvarterer
1.21e+07https://www.airbnb.com/rooms/12148640492       2232232      Condominium8292Private room1  133FALSETRUEAmager stflexible12.655.72.2e+03 3.34Amager
1.22e+07https://www.airbnb.com/rooms/12160191332       100      Apartment10494Private room1  112FALSETRUEsterbroflexible12.655.71.33e+033.12Brokvarterer
1.22e+07https://www.airbnb.com/rooms/12194944365       1149186      Apartment90100Private room1  112FALSETRUEIndre Byflexible12.655.72.35e+033.37Center
1.22e+07https://www.airbnb.com/rooms/12226772372       1129129      Apartment3096Private room1  112TRUETRUEVanlsestrict_14_with_grace_period12.555.72.13e+033.33Nordvest
1.22e+07https://www.airbnb.com/rooms/12245032352       2080      Apartment1096Private room1  112FALSETRUEAmager Vestmoderate12.655.71.41e+033.15Amager
1.23e+07https://www.airbnb.com/rooms/12330515598       200      Apartment4797Private room1  112FALSETRUEIndre Bymoderate12.655.72.39e+033.38Center
1.23e+07https://www.airbnb.com/rooms/12340792498       11000      Apartment1596Private room1  122FALSETRUEAmager stflexible12.655.72.09e+033.32Amager
1.24e+07https://www.airbnb.com/rooms/12358255498       1150100      Apartment27799Private room1.5112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.54e+033.41Brokvarterer
1.24e+07https://www.airbnb.com/rooms/12375571299       1080      Apartment41100Private room1  112FALSEFALSEAmager stmoderate12.655.71.52e+033.18Amager
1.24e+07https://www.airbnb.com/rooms/12420277598       2100200      Apartment4898Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.49e+033.4 Brokvarterer
1.25e+07https://www.airbnb.com/rooms/12462790452       12500      Apartment2098Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.06e+033.31Brokvarterer
1.25e+07https://www.airbnb.com/rooms/12487263438       100      Apartment5493Private room1  112FALSEFALSEFrederiksbergmoderate12.555.71.75e+033.24Brokvarterer
1.26e+07https://www.airbnb.com/rooms/12575485299       1250150      Apartment1292Private room1  121FALSETRUEVanlsemoderate12.555.72.05e+033.31Nordvest
1.27e+07https://www.airbnb.com/rooms/12658283797       11500      Apartment10100Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.73.34e+033.52Brokvarterer
1.27e+07https://www.airbnb.com/rooms/12719515551       2250150      Apartment5999Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.45e+033.39Brokvarterer
1.27e+07https://www.airbnb.com/rooms/12734192438       1160100      Apartment3898Private room1  112TRUEFALSENrrebromoderate12.655.72.31e+033.36Brokvarterer
1.28e+07https://www.airbnb.com/rooms/12776104996       100      Apartment5294Private room1  112FALSEFALSEIndre Bymoderate12.655.73.98e+033.6 Center
1.28e+07https://www.airbnb.com/rooms/12815659352       2120200      Apartment2898Private room1  123FALSEFALSEBrnshj-Husummoderate12.555.71.53e+033.18West
1.28e+07https://www.airbnb.com/rooms/12831689578       1250100      Apartment3292Private room1  112FALSETRUENrrebromoderate12.555.72.96e+033.47Brokvarterer
1.29e+07https://www.airbnb.com/rooms/12869453312       1500      Apartment3396Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.3e+03 3.11Amager
1.29e+07https://www.airbnb.com/rooms/12885262339       115050      Condominium1696Private room1  112FALSETRUEValbyflexible12.555.71.71e+033.23West
1.29e+07https://www.airbnb.com/rooms/12919829797       100      Apartment1597Private room1  112FALSETRUEIndre Byflexible12.655.73.19e+033.5 Center
1.29e+07https://www.airbnb.com/rooms/12927740498       100      House1391Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.99e+033.3 West
1.29e+07https://www.airbnb.com/rooms/12931088531       12520      Apartment1791Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.38e+033.38Brokvarterer
1.29e+07https://www.airbnb.com/rooms/12947491591       11000      Apartment8897Private room1  112TRUEFALSEIndre Bystrict_14_with_grace_period12.655.72.46e+033.39Center
1.3e+07 https://www.airbnb.com/rooms/12984776478       11250      Apartment5498Private room1  112FALSETRUENrrebromoderate12.655.72.04e+033.31Brokvarterer
1.3e+07 https://www.airbnb.com/rooms/13011604332       1600      Apartment4596Private room1  112FALSETRUEAmager Vestflexible12.655.61.39e+033.14Amager
1.3e+07 https://www.airbnb.com/rooms/13028543239       10120      House11691Private room1.5122FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.44e+033.16Amager
1.31e+07https://www.airbnb.com/rooms/13077959538       12500      Apartment6999Private room1.5102TRUETRUEFrederiksbergmoderate12.555.72.4e+03 3.38Brokvarterer
1.31e+07https://www.airbnb.com/rooms/13086664651       220050      Apartment1395Private room1  112FALSETRUEsterbromoderate12.655.72.8e+03 3.45Brokvarterer
1.31e+07https://www.airbnb.com/rooms/13090687452       1050      Apartment4397Private room1  112FALSETRUEAmager stmoderate12.655.72.01e+033.3 Amager
1.31e+07https://www.airbnb.com/rooms/13096414551       1050      Apartment13398Private room1  112TRUETRUEAmager Vestmoderate12.655.72.4e+03 3.38Amager
1.31e+07https://www.airbnb.com/rooms/13106453252       100      Apartment42190Private room1  112FALSETRUEBrnshj-Husummoderate12.555.71.01e+033   West
1.31e+07https://www.airbnb.com/rooms/13120964272       1200300      Apartment3598Private room1  101TRUETRUEsterbrostrict_14_with_grace_period12.655.72.49e+033.4 Brokvarterer
1.31e+07https://www.airbnb.com/rooms/13142897698       1350750      Apartment1596Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.76.14e+033.79Brokvarterer
1.31e+07https://www.airbnb.com/rooms/13149351478       110050      Condominium1098Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.21e+033.34Brokvarterer
1.32e+07https://www.airbnb.com/rooms/13151978292       1150150      House6095Private room1.5111TRUETRUEVanlsemoderate12.555.71.92e+033.28Nordvest
1.32e+07https://www.airbnb.com/rooms/13242071498       210050      Apartment1795Private room1  112FALSETRUENrrebromoderate12.555.72.09e+033.32Brokvarterer
1.33e+07https://www.airbnb.com/rooms/13259839372       197298      Apartment1395Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.78e+033.44Brokvarterer
1.33e+07https://www.airbnb.com/rooms/13273224372       12000      Condominium2796Private room1  112FALSETRUENrrebromoderate12.655.71.69e+033.23Brokvarterer
1.33e+07https://www.airbnb.com/rooms/13274718412       20125      Apartment6790Private room1  122FALSETRUENrrebroflexible12.655.71.65e+033.22Brokvarterer
1.33e+07https://www.airbnb.com/rooms/13275213399       1500      Apartment1198Private room1  111FALSEFALSEsterbroflexible12.655.71.65e+033.22Brokvarterer
1.33e+07https://www.airbnb.com/rooms/13278223412       100      Apartment44100Private room1  111FALSETRUEFrederiksbergflexible12.555.71.65e+033.22Brokvarterer
1.33e+07https://www.airbnb.com/rooms/13279240485       13000      Condominium3798Private room1  102TRUEFALSEVesterbro-Kongens Enghaveflexible12.555.72.24e+033.35Brokvarterer
1.33e+07https://www.airbnb.com/rooms/13314653359       25050      Apartment2390Private room1  113FALSETRUEAmager stmoderate12.655.71.49e+033.17Amager
1.33e+07https://www.airbnb.com/rooms/13336263306       12300      Apartment6898Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.45e+033.16Brokvarterer
1.33e+07https://www.airbnb.com/rooms/13339186751       13000      Condominium2295Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.73.3e+03 3.52Brokvarterer
1.34e+07https://www.airbnb.com/rooms/13351806897       13000      Apartment5596Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.73.89e+033.59Brokvarterer
1.34e+07https://www.airbnb.com/rooms/13367426797       100      Apartment13097Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.73.19e+033.5 Brokvarterer
1.34e+07https://www.airbnb.com/rooms/13368404525       30100      Apartment9798Private room1  233TRUEFALSEValbyflexible12.555.72.1e+03 3.32West
1.34e+07https://www.airbnb.com/rooms/13421958365       21000      Apartment12793Private room1  102FALSETRUEsterbrostrict_14_with_grace_period12.655.71.56e+033.19Brokvarterer
1.34e+07https://www.airbnb.com/rooms/13424583306       100      Apartment4995Private room1  112FALSETRUEBispebjergflexible12.555.71.22e+033.09Nordvest
1.34e+07https://www.airbnb.com/rooms/13448150399       21330      Apartment3996Private room1  112TRUETRUENrrebromoderate12.655.71.73e+033.24Brokvarterer
1.35e+07https://www.airbnb.com/rooms/13470008385       12200      Apartment9596Private room1  111FALSETRUENrrebrostrict_14_with_grace_period12.555.71.76e+033.25Brokvarterer
1.35e+07https://www.airbnb.com/rooms/13493970744       2186112      Apartment7796Private room0.5112TRUETRUEIndre Byflexible12.655.73.16e+033.5 Center
1.35e+07https://www.airbnb.com/rooms/13500450372       1200150      Apartment1598Private room1  121FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.29e+033.36Brokvarterer
1.35e+07https://www.airbnb.com/rooms/13503701585       1490      Apartment2596Private room1  112FALSEFALSEIndre Bymoderate12.655.72.39e+033.38Center
1.35e+07https://www.airbnb.com/rooms/13526389399       13000      Apartment7497Private room1  112TRUETRUEAmager stflexible12.655.61.9e+03 3.28Amager
1.35e+07https://www.airbnb.com/rooms/13527804325       12000      Apartment23690Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.5e+03 3.18Brokvarterer
1.35e+07https://www.airbnb.com/rooms/13544808498       11000      Apartment1897Private room1  111TRUEFALSEFrederiksbergflexible12.555.72.09e+033.32Brokvarterer
1.36e+07https://www.airbnb.com/rooms/13579614399       11200      Apartment3197Private room1  112FALSETRUENrrebromoderate12.555.71.72e+033.23Brokvarterer
1.36e+07https://www.airbnb.com/rooms/13600699299       1330      Apartment2594Private room1  112FALSEFALSEValbymoderate12.555.71.23e+033.09West
1.36e+07https://www.airbnb.com/rooms/136121161e+03       12000      Apartment2893Private room1.5122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.74.21e+033.62Brokvarterer
1.36e+07https://www.airbnb.com/rooms/13618888279       12500      Apartment3598Private room1  111FALSETRUEAmager ststrict_14_with_grace_period12.655.71.37e+033.14Amager
1.36e+07https://www.airbnb.com/rooms/13635666399       100      Apartment1092Private room1  122FALSEFALSEVanlseflexible12.555.71.6e+03 3.2 Nordvest
1.36e+07https://www.airbnb.com/rooms/13639178399       1150180      Apartment5696Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.47e+033.39Brokvarterer
1.37e+07https://www.airbnb.com/rooms/13650972292       100      Apartment1090Private room1  112FALSETRUEIndre Byflexible12.655.71.17e+033.07Center
1.37e+07https://www.airbnb.com/rooms/13651354399       100      Apartment1098Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.6e+03 3.2 Brokvarterer
1.37e+07https://www.airbnb.com/rooms/13655127332       1660      Apartment35094Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.39e+033.14Brokvarterer
1.37e+07https://www.airbnb.com/rooms/13662769352       1330      Apartment3992Private room1  112FALSETRUEValbyflexible12.555.71.44e+033.16West
1.37e+07https://www.airbnb.com/rooms/13662971199       2280250      Other2499Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.08e+033.03Amager
1.37e+07https://www.airbnb.com/rooms/13683923412       237224      Condominium19092Private room1  112FALSETRUEValbymoderate12.555.71.68e+033.23West
1.37e+07https://www.airbnb.com/rooms/13690875352       10200      Other3598Private room1  112FALSEFALSEBrnshj-Husummoderate12.555.72.21e+033.34West
1.37e+07https://www.airbnb.com/rooms/13696780339       19999      Apartment14297Private room1  112TRUETRUEValbystrict_14_with_grace_period12.555.71.85e+033.27West
1.37e+07https://www.airbnb.com/rooms/13710505432       1150150      Apartment4592Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.48e+033.39Brokvarterer
1.37e+07https://www.airbnb.com/rooms/13725163292       100      Apartment19297Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.17e+033.07Brokvarterer
1.37e+07https://www.airbnb.com/rooms/13728573332       1500      Apartment1095Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.61.38e+033.14Brokvarterer
1.37e+07https://www.airbnb.com/rooms/13741272299       215050      Apartment1096Private room1  112FALSETRUENrrebroflexible12.555.71.35e+033.13Brokvarterer
1.37e+07https://www.airbnb.com/rooms/13744901299       20200      Apartment1795Private room1  122FALSETRUEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer
1.38e+07https://www.airbnb.com/rooms/13762092498       100      Apartment3895Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.99e+033.3 Brokvarterer
1.38e+07https://www.airbnb.com/rooms/13763391312       1100200      Apartment5398Private room1  112TRUETRUEValbymoderate12.555.72.15e+033.33West
1.38e+07https://www.airbnb.com/rooms/13778831299       100      Apartment1395Private room1  112FALSETRUEAmager stflexible12.655.71.2e+03 3.08Amager
1.38e+07https://www.airbnb.com/rooms/13799505352       1200250      Condominium1596Private room1  112TRUEFALSEFrederiksbergmoderate12.555.72.61e+033.42Brokvarterer
1.38e+07https://www.airbnb.com/rooms/13811146372       11340      Townhouse12798Private room1.5112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.62e+033.21Brokvarterer
1.38e+07https://www.airbnb.com/rooms/13813273438       11000      Apartment14292Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.85e+033.27Brokvarterer
1.39e+07https://www.airbnb.com/rooms/13869906392       1075      Apartment8097Private room1  112TRUETRUEAmager stmoderate12.655.71.87e+033.27Amager
1.39e+07https://www.airbnb.com/rooms/13870460452       1350      Apartment1297Private room1  111FALSETRUEAmager Vestmoderate12.655.71.84e+033.27Amager
1.39e+07https://www.airbnb.com/rooms/13875834153       15035      Apartment3393Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.655.7802       2.9 Brokvarterer
1.39e+07https://www.airbnb.com/rooms/13881364531       11000      Apartment1096Private room1  111TRUEFALSENrrebromoderate12.655.72.22e+033.35Brokvarterer
1.39e+07https://www.airbnb.com/rooms/13890786631       11120      Apartment2793Private room1  122FALSEFALSEFrederiksbergmoderate12.555.72.64e+033.42Brokvarterer
1.39e+07https://www.airbnb.com/rooms/13916569525       11980      Apartment14399Private room1  112FALSETRUEIndre Bymoderate12.655.72.3e+03 3.36Center
1.39e+07https://www.airbnb.com/rooms/13920288352       11500      Condominium7499Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.61.56e+033.19Brokvarterer
1.39e+07https://www.airbnb.com/rooms/13925405498       21000      Apartment1193Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.09e+033.32Brokvarterer
1.4e+07 https://www.airbnb.com/rooms/13954987399       1332100      Apartment3298Private room1  122FALSETRUENrrebrostrict_14_with_grace_period12.655.72.33e+033.37Brokvarterer
1.4e+07 https://www.airbnb.com/rooms/13966376651       2100150      Condominium7294Private room1  124TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.7e+03 3.43Brokvarterer
1.4e+07 https://www.airbnb.com/rooms/13973655598       1200300      Apartment6597Private room1  102FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.79e+033.58Center
1.4e+07 https://www.airbnb.com/rooms/13987158345       2200200      Apartment8190Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.58e+033.2 Brokvarterer
1.4e+07 https://www.airbnb.com/rooms/13993300299       11500      Other6099Private room1  112TRUETRUEValbyflexible12.555.71.35e+033.13West
1.4e+07 https://www.airbnb.com/rooms/14017539651       100      Apartment16695Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.6e+03 3.42Brokvarterer
1.41e+07https://www.airbnb.com/rooms/14061328365       1200200      Apartment6294Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.46e+033.39Brokvarterer
1.41e+07https://www.airbnb.com/rooms/14061803485       1224186      Apartment2893Private room1  112FALSEFALSEIndre Bymoderate12.655.72.91e+033.46Center
1.41e+07https://www.airbnb.com/rooms/14071367498       12000      Apartment2296Private room1  223FALSETRUEAmager stmoderate12.655.72.19e+033.34Amager
1.41e+07https://www.airbnb.com/rooms/14080873385       1175160      Apartment8091Private room1  102FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.36e+033.37Brokvarterer
1.41e+07https://www.airbnb.com/rooms/14108544365       16745      Apartment2697Private room1  112FALSETRUEsterbroflexible12.655.71.71e+033.23Brokvarterer
1.41e+07https://www.airbnb.com/rooms/14108954392       12500      Apartment1196Private room1  101FALSEFALSEVanlsemoderate12.555.71.82e+033.26Nordvest
1.41e+07https://www.airbnb.com/rooms/14110830352       1200200      Apartment4198Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.41e+033.38Brokvarterer
1.41e+07https://www.airbnb.com/rooms/14141060299       100      Apartment1697Private room1  112FALSEFALSENrrebroflexible12.555.71.2e+03 3.08Brokvarterer
1.42e+07https://www.airbnb.com/rooms/14159068452       2200150      Apartment1195Private room1  112FALSETRUENrrebromoderate12.555.72.01e+033.3 Brokvarterer
1.42e+07https://www.airbnb.com/rooms/14176447399       2200150      Apartment1198Private room1  113FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.8e+03 3.25Brokvarterer
1.42e+07https://www.airbnb.com/rooms/14234746266       1050      Apartment2496Private room1  112FALSEFALSEAmager Vestflexible12.655.61.26e+033.1 Amager
1.42e+07https://www.airbnb.com/rooms/14243103385       100      Apartment1494Private room1  112FALSETRUENrrebromoderate12.555.71.54e+033.19Brokvarterer
1.43e+07https://www.airbnb.com/rooms/14258650272       1150150      Condominium2392Private room1  112FALSETRUEVanlsemoderate12.555.71.84e+033.26Nordvest
1.43e+07https://www.airbnb.com/rooms/14268783651       12000      Townhouse17100Private room1  112TRUETRUEAmager Vestmoderate12.655.72.8e+03 3.45Amager
1.43e+07https://www.airbnb.com/rooms/14279864751       1147200      Apartment7598Private room1  113TRUETRUEIndre Bymoderate12.655.73.95e+033.6 Center
1.43e+07https://www.airbnb.com/rooms/14298999551       2250350      Apartment26796Private room1  122TRUEFALSEIndre Byflexible12.655.72.45e+033.39Center
1.44e+07https://www.airbnb.com/rooms/14401476498       100      Apartment8298Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.71.99e+033.3 Brokvarterer
1.44e+07https://www.airbnb.com/rooms/14401781272       11000      Apartment1292Private room1  112FALSETRUEsterbromoderate12.655.71.19e+033.07Brokvarterer
1.44e+07https://www.airbnb.com/rooms/14413587432       16666      Apartment39292Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.06e+033.31Brokvarterer
1.45e+07https://www.airbnb.com/rooms/14460394458       100      Apartment4499Private room1  111TRUETRUEsterbrostrict_14_with_grace_period12.655.71.83e+033.26Brokvarterer
1.45e+07https://www.airbnb.com/rooms/14466298498       100      Apartment1698Private room1  112FALSETRUENrrebromoderate12.655.71.99e+033.3 Brokvarterer
1.45e+07https://www.airbnb.com/rooms/14502121292       100      Apartment1098Private room1  122FALSEFALSEAmager stflexible12.655.71.17e+033.07Amager
1.45e+07https://www.airbnb.com/rooms/14507458399       100      Townhouse1695Private room1  111TRUETRUEIndre Bystrict_14_with_grace_period12.655.71.6e+03 3.2 Center
1.45e+07https://www.airbnb.com/rooms/14549448698       2150100      Apartment9998Private room1  123FALSEFALSEIndre Bystrict_14_with_grace_period12.655.72.94e+033.47Center
1.46e+07https://www.airbnb.com/rooms/14552618352       10350      Condominium1898Private room1  111TRUEFALSEFrederiksbergflexible12.555.72.81e+033.45Brokvarterer
1.46e+07https://www.airbnb.com/rooms/14571146472       111058      Apartment7796Private room1  123FALSETRUEsterbromoderate12.655.72.23e+033.35Brokvarterer
1.46e+07https://www.airbnb.com/rooms/14607874399       100      Apartment31598Private room1  112TRUEFALSEFrederiksbergmoderate12.555.71.6e+03 3.2 Brokvarterer
1.46e+07https://www.airbnb.com/rooms/14643026312       100      Apartment1691Private room1  112FALSETRUEVanlseflexible12.555.71.25e+033.1 Nordvest
1.47e+07https://www.airbnb.com/rooms/146641561.1e+03 11000      Apartment20193Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.74.51e+033.65Center
1.47e+07https://www.airbnb.com/rooms/14712258485       10100      Apartment10799Private room1.5112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.34e+033.37Brokvarterer
1.47e+07https://www.airbnb.com/rooms/14722243551       1300500      Apartment2598Private room1  111FALSETRUEAmager Vestmoderate12.655.74.5e+03 3.65Amager
1.47e+07https://www.airbnb.com/rooms/14726786498       100      Apartment3899Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.99e+033.3 Center
1.47e+07https://www.airbnb.com/rooms/14737946598       1200200      Apartment5196Private room1  112TRUETRUEIndre Bymoderate12.655.73.39e+033.53Center
1.48e+07https://www.airbnb.com/rooms/14754619412       115080      Apartment1499Private room1  112FALSETRUEsterbroflexible12.655.72.12e+033.33Brokvarterer
1.48e+07https://www.airbnb.com/rooms/14765243299       150100      Apartment1193Private room1  112FALSEFALSENrrebroflexible12.555.71.65e+033.22Brokvarterer
1.48e+07https://www.airbnb.com/rooms/14779274206       1900      Apartment1196Private room1  112FALSETRUEBrnshj-Husummoderate12.555.7914       2.96West
1.48e+07https://www.airbnb.com/rooms/14780231498       100      Condominium2295Private room1  122FALSEFALSEsterbroflexible12.655.71.99e+033.3 Brokvarterer
1.48e+07https://www.airbnb.com/rooms/14782133372       20200      Apartment2697Private room1  112FALSEFALSEsterbroflexible12.655.71.49e+033.17Brokvarterer
1.48e+07https://www.airbnb.com/rooms/14794890352       11000      Apartment1499Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.51e+033.18Brokvarterer
1.48e+07https://www.airbnb.com/rooms/14822247239       100      Apartment1098Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.6956       2.98Brokvarterer
1.48e+07https://www.airbnb.com/rooms/14839250299       1254195      Apartment5797Private room1.5112FALSEFALSENrrebroflexible12.655.72.23e+033.35Brokvarterer
1.49e+07https://www.airbnb.com/rooms/14899205412       100      Apartment4596Private room1  123FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.65e+033.22Brokvarterer
1.49e+07https://www.airbnb.com/rooms/14911605598       12000      Apartment12697Private room1  102TRUETRUEsterbromoderate12.655.72.59e+033.41Brokvarterer
1.49e+07https://www.airbnb.com/rooms/14913797591       10100      Condominium2799Private room1.5112TRUETRUEIndre Bymoderate12.655.72.76e+033.44Center
1.5e+07 https://www.airbnb.com/rooms/14956541452       1200200      Apartment6597Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.81e+033.45Brokvarterer
1.5e+07 https://www.airbnb.com/rooms/14961774252       175100      Other9896Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.48e+033.17Brokvarterer
1.5e+07 https://www.airbnb.com/rooms/14962911226       1149134      Apartment6397Private room1  113TRUETRUEVanlsemoderate12.555.71.59e+033.2 Nordvest
1.5e+07 https://www.airbnb.com/rooms/14968304352       100      Apartment10100Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.41e+033.15Brokvarterer
1.5e+07 https://www.airbnb.com/rooms/14968916246       1295250      Apartment2798Private room1.5111TRUETRUEAmager ststrict_14_with_grace_period12.655.72.28e+033.36Amager
1.5e+07 https://www.airbnb.com/rooms/14976273299       100      Apartment5596Private room1  111FALSETRUEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer
1.5e+07 https://www.airbnb.com/rooms/15034625452       100      Apartment5699Private room1  112FALSETRUEIndre Byflexible12.655.71.81e+033.26Center
1.5e+07 https://www.airbnb.com/rooms/15047956272       1200100      Apartment1398Private room1  111FALSETRUEBispebjergmoderate12.555.71.69e+033.23Nordvest
1.51e+07https://www.airbnb.com/rooms/15118238372       11500      Apartment1795Private room1  111FALSEFALSEFrederiksbergmoderate12.555.71.64e+033.21Brokvarterer
1.51e+07https://www.airbnb.com/rooms/15120983392       23980      Apartment1193Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.61e+033.21Brokvarterer
1.51e+07https://www.airbnb.com/rooms/15141459784       1300900      Apartment1098Private room1  101FALSEFALSENrrebroflexible12.655.77.04e+033.85Brokvarterer
1.51e+07https://www.airbnb.com/rooms/15142252332       15050      Apartment6396Private room1  112FALSETRUEBispebjergflexible12.555.71.58e+033.2 Nordvest
1.52e+07https://www.airbnb.com/rooms/15191908551       13000      Apartment16394Private room1  112FALSETRUEIndre Bymoderate12.655.72.5e+03 3.4 Center
1.52e+07https://www.airbnb.com/rooms/15205440651       10100      Apartment3694Private room1.5111TRUEFALSEIndre Bymoderate12.655.73e+03       3.48Center
1.52e+07https://www.airbnb.com/rooms/15227844239       100      Apartment1595Private room1  112FALSETRUEBrnshj-Husumflexible12.555.7956       2.98West
1.52e+07https://www.airbnb.com/rooms/15233650199       14075      Apartment2396Private room1  111FALSEFALSEsterbroflexible12.655.71.14e+033.06Brokvarterer
1.53e+07https://www.airbnb.com/rooms/15266664498       2300150      Apartment1096Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.29e+033.36Brokvarterer
1.53e+07https://www.airbnb.com/rooms/15272111259       2300150      Apartment1398Private room1  112FALSETRUENrrebromoderate12.555.71.34e+033.13Brokvarterer
1.53e+07https://www.airbnb.com/rooms/15295995299       1300175      Apartment2996Private room1  122FALSETRUEBrnshj-Husummoderate12.555.72.2e+03 3.34West
1.53e+07https://www.airbnb.com/rooms/15307935698       10145      Apartment1590Private room1  123FALSEFALSENrrebroflexible12.655.73.37e+033.53Brokvarterer
1.53e+07https://www.airbnb.com/rooms/15308519352       1080      House3792Private room1  133FALSETRUEValbymoderate12.555.71.73e+033.24West
1.53e+07https://www.airbnb.com/rooms/15319837319       11500      Apartment10100Private room1  112FALSETRUEsterbromoderate12.655.71.43e+033.15Brokvarterer
1.54e+07https://www.airbnb.com/rooms/15358544498       1100100      Apartment1899Private room1  112FALSEFALSEAmager Veststrict_14_with_grace_period12.655.62.49e+033.4 Amager
1.54e+07https://www.airbnb.com/rooms/15358672578       2250200      Apartment34100Private room1  112TRUETRUENrrebroflexible12.655.72.56e+033.41Brokvarterer
1.54e+07https://www.airbnb.com/rooms/15372015452       10100      Apartment1497Private room1  112FALSETRUENrrebroflexible12.555.72.21e+033.34Brokvarterer
1.54e+07https://www.airbnb.com/rooms/15376339498       14979      Apartment3096Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.36e+033.37Brokvarterer
1.54e+07https://www.airbnb.com/rooms/15403628419       1100100      Apartment1799Private room1  102FALSEFALSEIndre Byflexible12.655.72.18e+033.34Center
1.54e+07https://www.airbnb.com/rooms/15406430531       24646      Apartment4699Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.17e+033.34Brokvarterer
1.55e+07https://www.airbnb.com/rooms/15459697492       100      Apartment3097Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.71.97e+033.29Brokvarterer
1.55e+07https://www.airbnb.com/rooms/15478389352       10190      House4192Private room1  122FALSETRUEBrnshj-Husumflexible12.555.72.17e+033.34West
1.55e+07https://www.airbnb.com/rooms/15530281651       100      Apartment1293Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.6e+03 3.42Brokvarterer
1.55e+07https://www.airbnb.com/rooms/15541581266       100      Apartment1297Private room1  112FALSETRUENrrebromoderate12.655.71.06e+033.03Brokvarterer
1.56e+07https://www.airbnb.com/rooms/15562490299       10186      Apartment1196Private room1  224FALSEFALSENrrebroflexible12.655.71.94e+033.29Brokvarterer
1.56e+07https://www.airbnb.com/rooms/15629002299       11500      Apartment1798Private room1  112FALSETRUENrrebromoderate12.555.71.35e+033.13Brokvarterer
1.56e+07https://www.airbnb.com/rooms/15639989279       110060      Apartment8893Private room1  112FALSETRUEsterbromoderate12.655.71.46e+033.16Brokvarterer
1.57e+07https://www.airbnb.com/rooms/15672465498       115035      Apartment3796Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.28e+033.36Brokvarterer
1.57e+07https://www.airbnb.com/rooms/15712130365       150100      Apartment2098Private room1  112FALSETRUEVanlsestrict_14_with_grace_period12.555.71.91e+033.28Nordvest
1.58e+07https://www.airbnb.com/rooms/15804159259       10250      Apartment8099Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.04e+033.31Amager
1.58e+07https://www.airbnb.com/rooms/15810133498       1750      Apartment6796Private room1  102FALSETRUENrrebrostrict_14_with_grace_period12.655.72.07e+033.32Brokvarterer
1.58e+07https://www.airbnb.com/rooms/15811985591       11500      Condominium180100Private room1  112TRUETRUEAmager Vestmoderate12.655.62.51e+033.4 Amager
1.58e+07https://www.airbnb.com/rooms/15840536531       100      Apartment13100Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.12e+033.33Brokvarterer
1.59e+07https://www.airbnb.com/rooms/15851020352       11600      Apartment4696Private room1  111TRUETRUEVanlsestrict_14_with_grace_period12.555.71.57e+033.2 Nordvest
1.59e+07https://www.airbnb.com/rooms/15862390252       11450      House12399Private room1  112TRUETRUEAmager Vestmoderate12.655.71.15e+033.06Amager
1.59e+07https://www.airbnb.com/rooms/15864315352       12000      Apartment5097Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.61e+033.21Brokvarterer
1.59e+07https://www.airbnb.com/rooms/15865253651       11950      Apartment1298Private room1  112FALSETRUENrrebromoderate12.555.72.8e+03 3.45Brokvarterer
1.59e+07https://www.airbnb.com/rooms/15865259352       11450      House2498Private room1  112TRUETRUEAmager Vestmoderate12.655.71.55e+033.19Amager
1.61e+07https://www.airbnb.com/rooms/16057794399       150150      Apartment1599Private room1  112FALSETRUEIndre Bymoderate12.655.72.25e+033.35Center
1.61e+07https://www.airbnb.com/rooms/16059577452       100      Apartment5595Private room1  112FALSEFALSEAmager Vestmoderate12.655.71.81e+033.26Amager
1.61e+07https://www.airbnb.com/rooms/16095589385       225050      House12197Private room1  122TRUETRUEBrnshj-Husummoderate12.555.71.79e+033.25West
1.61e+07https://www.airbnb.com/rooms/16122603399       1100100      Apartment6799Private room2  122TRUETRUEsterbroflexible12.655.72.1e+03 3.32Brokvarterer
1.61e+07https://www.airbnb.com/rooms/16122980498       11000      Other1094Private room1  111FALSETRUEFrederiksbergflexible12.555.72.09e+033.32Brokvarterer
1.61e+07https://www.airbnb.com/rooms/16127015352       11500      Apartment5199Private room1  112TRUETRUENrrebroflexible12.555.71.56e+033.19Brokvarterer
1.61e+07https://www.airbnb.com/rooms/16128152445       2200200      Apartment1497Private room1  222FALSEFALSENrrebrostrict_14_with_grace_period12.655.71.98e+033.3 Brokvarterer
1.62e+07https://www.airbnb.com/rooms/16167492352       100      Apartment1093Private room1  113FALSETRUEFrederiksbergflexible12.555.71.41e+033.15Brokvarterer
1.62e+07https://www.airbnb.com/rooms/16214867797       1250100      Apartment12100Private room1.5112FALSETRUEsterbroflexible12.655.73.84e+033.58Brokvarterer
1.62e+07https://www.airbnb.com/rooms/16248647551       134100      Apartment2099Private room1  112TRUEFALSENrrebromoderate12.555.72.64e+033.42Brokvarterer
1.62e+07https://www.airbnb.com/rooms/16249848232       1050      Apartment9590Private room1  112FALSEFALSEBispebjergflexible12.555.71.13e+033.05Nordvest
1.63e+07https://www.airbnb.com/rooms/16255960671       100      Apartment1090Private room1  112FALSEFALSEIndre Byflexible12.655.72.68e+033.43Center
1.63e+07https://www.airbnb.com/rooms/16280204498       12000      Apartment1093Private room1  124FALSETRUEsterbroflexible12.655.72.19e+033.34Brokvarterer
1.63e+07https://www.airbnb.com/rooms/16292698299       100      Apartment1893Private room1  111FALSEFALSEFrederiksbergmoderate12.655.71.2e+03 3.08Brokvarterer
1.63e+07https://www.airbnb.com/rooms/16297719365       43500      Apartment1795Private room1  112FALSETRUEsterbromoderate12.655.71.81e+033.26Brokvarterer
1.63e+07https://www.airbnb.com/rooms/16299882352       15050      Apartment2095Private room1  112FALSETRUEFrederiksbergflexible12.555.71.66e+033.22Brokvarterer
1.63e+07https://www.airbnb.com/rooms/16328654299       10200      Condominium2195Private room2  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.72e+03       3.3 Center
1.63e+07https://www.airbnb.com/rooms/16347825332       110060      Apartment7695Private room1  123TRUETRUEValbystrict_14_with_grace_period12.555.71.67e+033.22West
1.64e+07https://www.airbnb.com/rooms/16361142299       100      Apartment1297Private room1  112FALSETRUENrrebromoderate12.655.71.2e+03 3.08Brokvarterer
1.64e+07https://www.airbnb.com/rooms/16378183452       1500      Apartment8597Private room1  112TRUETRUEAmager Vestflexible12.655.71.86e+033.27Amager
1.65e+07https://www.airbnb.com/rooms/16452321399       21000      Apartment5396Private room1.5112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.7e+03 3.23Brokvarterer
1.65e+07https://www.airbnb.com/rooms/16501554412       1750      Apartment1596Private room1  112FALSETRUEAmager stmoderate12.655.71.72e+033.24Amager
1.65e+07https://www.airbnb.com/rooms/16503879352       100      Apartment7890Private room1  111FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.41e+033.15Brokvarterer
1.65e+07https://www.airbnb.com/rooms/16504907299       110035      Apartment1397Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.44e+033.16Brokvarterer
1.65e+07https://www.airbnb.com/rooms/16532377399       1035      Apartment1595Private room1  112FALSETRUENrrebroflexible12.555.71.74e+033.24Brokvarterer
1.66e+07https://www.airbnb.com/rooms/16582945345       2200200      Apartment1596Private room1  124FALSETRUEIndre Byflexible12.655.71.58e+033.2 Center
1.66e+07https://www.airbnb.com/rooms/16614115166       1100150      Apartment2699Private room1  122FALSETRUEBrnshj-Husumflexible12.555.71.36e+033.13West
1.66e+07https://www.airbnb.com/rooms/16614696199       1250250      Other1597Private room1  112FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.72.05e+033.31West
1.67e+07https://www.airbnb.com/rooms/16651793259       12000      Apartment12394Private room1  111FALSETRUEIndre Byflexible12.655.71.24e+033.09Center
1.67e+07https://www.airbnb.com/rooms/16668759498       12000      Apartment17100Private room1  112FALSETRUEAmager Vestflexible12.655.72.19e+033.34Amager
1.67e+07https://www.airbnb.com/rooms/16669425598       13000      Apartment1698Private room1  112FALSEFALSEsterbrostrict_14_with_grace_period12.655.72.69e+033.43Brokvarterer
1.67e+07https://www.airbnb.com/rooms/16683318372       1750      Apartment5698Private room2  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.61.56e+033.19Brokvarterer
1.67e+07https://www.airbnb.com/rooms/16685297651       1070      Apartment3097Private room1  112TRUETRUEAmager stmoderate12.655.72.88e+033.46Amager
1.67e+07https://www.airbnb.com/rooms/16738987399       20100      Apartment19100Private room1  112FALSEFALSEAmager stmoderate12.655.71.6e+03 3.2 Amager
1.68e+07https://www.airbnb.com/rooms/16750323551       11000      Apartment2798Private room1.5112FALSETRUEFrederiksbergmoderate12.555.72.3e+03 3.36Brokvarterer
1.68e+07https://www.airbnb.com/rooms/16753177399       100      House1596Private room1  112FALSETRUEAmager Vestmoderate12.655.71.6e+03 3.2 Amager
1.68e+07https://www.airbnb.com/rooms/16773592458       100      Apartment2396Private room1  122FALSETRUENrrebroflexible12.555.71.83e+033.26Brokvarterer
1.68e+07https://www.airbnb.com/rooms/16787302498       100      Apartment2698Private room1  112FALSETRUEIndre Bymoderate12.655.71.99e+033.3 Center
1.68e+07https://www.airbnb.com/rooms/16787456485       20134      Apartment3292Private room1  112FALSETRUENrrebroflexible12.655.71.94e+033.29Brokvarterer
1.68e+07https://www.airbnb.com/rooms/16790616525       227575      Apartment1495Private room1  113FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.38e+033.38Brokvarterer
1.68e+07https://www.airbnb.com/rooms/16800953292       1600250      Townhouse3194Private room1  111TRUETRUEVanlseflexible12.555.72.77e+033.44Nordvest
1.68e+07https://www.airbnb.com/rooms/16809364452       1200300      Apartment8593Private room1  112FALSETRUEAmager Vestmoderate12.655.73.21e+033.51Amager
1.69e+07https://www.airbnb.com/rooms/16875751252       175225      House2293Private room1  122FALSETRUEVanlsemoderate12.555.71.98e+033.3 Nordvest
1.69e+07https://www.airbnb.com/rooms/16907209698       10100      Apartment1592Private room1  112FALSETRUENrrebroflexible12.655.73.19e+033.5 Brokvarterer
1.69e+07https://www.airbnb.com/rooms/16944653498       112560      Condominium16299Private room1  112TRUETRUEAmager Vestflexible12.655.72.36e+033.37Amager
1.7e+07 https://www.airbnb.com/rooms/16971170531       100      Apartment1493Private room1  012FALSETRUEIndre Byflexible12.655.72.12e+033.33Center
1.7e+07 https://www.airbnb.com/rooms/16991100392       100      Apartment1592Private room0.5111FALSETRUEIndre Byflexible12.655.71.57e+033.2 Center
1.7e+07 https://www.airbnb.com/rooms/17009290578       2100450      Apartment11397Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.41e+033.38Brokvarterer
1.7e+07 https://www.airbnb.com/rooms/17033458246       1990      Apartment1093Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.08e+033.03Brokvarterer
1.71e+07https://www.airbnb.com/rooms/17116318352       190130      Apartment7393Private room1  111FALSETRUEBispebjergmoderate12.555.72.02e+033.3 Nordvest
1.71e+07https://www.airbnb.com/rooms/17135790399       200      Apartment2799Private room1  112FALSETRUENrrebroflexible12.555.71.6e+03 3.2 Brokvarterer
1.72e+07https://www.airbnb.com/rooms/17165115558       200      Apartment1796Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.23e+033.35Brokvarterer
1.72e+07https://www.airbnb.com/rooms/17166000332       1175250      Apartment3093Private room2  225FALSEFALSENrrebroflexible12.655.72.5e+03 3.4 Brokvarterer
1.72e+07https://www.airbnb.com/rooms/17184069299       1100100      Apartment1296Private room1  111FALSETRUEValbymoderate12.555.71.7e+03 3.23West
1.72e+07https://www.airbnb.com/rooms/17215697326       150200      Apartment7296Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.15e+033.33Brokvarterer
1.73e+07https://www.airbnb.com/rooms/17313722751       250200      Apartment36096Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.655.73.05e+033.48Brokvarterer
1.73e+07https://www.airbnb.com/rooms/17335206392       20125      Apartment4798Private room1  113TRUEFALSEVanlsemoderate12.555.71.57e+033.2 Nordvest
1.73e+07https://www.airbnb.com/rooms/17340635359       1500      Apartment1591Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.49e+033.17Brokvarterer
1.74e+07https://www.airbnb.com/rooms/17352894432       100      House1092Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.61.73e+033.24Amager
1.74e+07https://www.airbnb.com/rooms/17365223498       12000      Apartment1496Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.19e+033.34Brokvarterer
1.74e+07https://www.airbnb.com/rooms/17373122299       100      Apartment1090Private room1  112FALSEFALSEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer
1.74e+07https://www.airbnb.com/rooms/17394882797       100      House3296Private room1  112FALSETRUEIndre Byflexible12.655.73.19e+033.5 Center
1.74e+07https://www.airbnb.com/rooms/17419481399       249200      Apartment21100Private room2  112FALSETRUEAmager stmoderate12.655.71.64e+033.22Amager
1.75e+07https://www.airbnb.com/rooms/17469632352       100      Apartment1497Private room1  112FALSETRUEBispebjergflexible12.555.71.41e+033.15Nordvest
1.75e+07https://www.airbnb.com/rooms/17470233731       20300      Apartment3498Private room1  244TRUETRUENrrebroflexible12.655.72.92e+033.47Brokvarterer
1.75e+07https://www.airbnb.com/rooms/17484651372       11000      Apartment2590Private room1  112FALSETRUEsterbroflexible12.655.71.59e+033.2 Brokvarterer
1.75e+07https://www.airbnb.com/rooms/17493273399       255200      Apartment5295Private room1  112FALSETRUEFrederiksbergflexible12.555.71.65e+033.22Brokvarterer
1.75e+07https://www.airbnb.com/rooms/17509177352       100      Apartment3095Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.41e+033.15Brokvarterer
1.75e+07https://www.airbnb.com/rooms/17510665352       2225175      Apartment6696Private room1  123FALSETRUENrrebromoderate12.655.71.63e+033.21Brokvarterer
1.75e+07https://www.airbnb.com/rooms/17513955598       100      Apartment4195Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.39e+033.38Brokvarterer
1.75e+07https://www.airbnb.com/rooms/17524864359       1350      Apartment14100Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.47e+033.17Brokvarterer
1.75e+07https://www.airbnb.com/rooms/17534970199       100      Apartment1694Private room1  111FALSETRUENrrebroflexible12.555.7796       2.9 Brokvarterer
1.76e+07https://www.airbnb.com/rooms/17587722312       11420      Apartment1995Private room1  112FALSEFALSEAmager stflexible12.655.71.39e+033.14Amager
1.76e+07https://www.airbnb.com/rooms/17600961737       22170      Apartment2298Private room1  111TRUETRUEIndre Bymoderate12.655.73.16e+033.5 Center
1.76e+07https://www.airbnb.com/rooms/17607462399       100      Apartment3099Private room1  111FALSETRUENrrebromoderate12.555.71.6e+03 3.2 Brokvarterer
1.76e+07https://www.airbnb.com/rooms/17616662299       1350      Apartment12100Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.23e+033.09Brokvarterer
1.76e+07https://www.airbnb.com/rooms/17621434399       11000      Apartment10100Private room1  112FALSEFALSEIndre Byflexible12.655.71.7e+03 3.23Center
1.76e+07https://www.airbnb.com/rooms/17637436372       11000      Apartment26100Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.59e+033.2 Brokvarterer
1.77e+07https://www.airbnb.com/rooms/17650592299       1500      Apartment3197Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.25e+033.1 Brokvarterer
1.77e+07https://www.airbnb.com/rooms/17665882797       1199198      Townhouse1596Private room1  123TRUETRUEIndre Bymoderate12.655.74.18e+033.62Center
1.77e+07https://www.airbnb.com/rooms/17676460478       20200      House16299Private room1  123TRUETRUEVanlsemoderate12.555.71.91e+033.28Nordvest
1.77e+07https://www.airbnb.com/rooms/17687898272       2120350      Apartment11100Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.21e+033.08Brokvarterer
1.77e+07https://www.airbnb.com/rooms/17705204498       100      Other4399Private room1  112FALSETRUEValbymoderate12.555.71.99e+033.3 West
1.77e+07https://www.airbnb.com/rooms/17725947498       12500      Apartment12499Private room1  122TRUETRUEAmager stmoderate12.655.72.24e+033.35Amager
1.78e+07https://www.airbnb.com/rooms/17762371498       11000      Apartment6497Private room1  122TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.09e+033.32Brokvarterer
1.78e+07https://www.airbnb.com/rooms/17803617259       120075      Condominium2899Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.54e+033.19Amager
1.78e+07https://www.airbnb.com/rooms/17805545498       150100      Condominium3297Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.62.44e+033.39Brokvarterer
1.78e+07https://www.airbnb.com/rooms/17827410352       235200      Apartment4996Private room1  122TRUETRUEBispebjergflexible12.555.71.44e+033.16Nordvest
1.79e+07https://www.airbnb.com/rooms/17853510445       12800      Apartment7697Private room1  122FALSETRUENrrebroflexible12.555.72.06e+033.31Brokvarterer
1.79e+07https://www.airbnb.com/rooms/17856993399       11000      Apartment2297Private room1  112FALSEFALSEAmager stmoderate12.655.71.7e+03 3.23Amager
1.79e+07https://www.airbnb.com/rooms/178775601.15e+03200      Other2695Private room1  122FALSETRUEAmager stflexible12.655.74.6e+03 3.66Amager
1.79e+07https://www.airbnb.com/rooms/17883381538       100      Townhouse11498Private room0  112TRUETRUEIndre Bymoderate12.655.72.15e+033.33Center
1.79e+07https://www.airbnb.com/rooms/17891532299       100      Apartment21100Private room1  112FALSEFALSEAmager Vestmoderate12.655.71.2e+03 3.08Amager
1.79e+07https://www.airbnb.com/rooms/17905527233       100      Apartment1499Private room1.5112TRUETRUEBispebjergstrict_14_with_grace_period12.555.7932       2.97Nordvest
1.79e+07https://www.airbnb.com/rooms/17931706286       1250295      Apartment4492Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.72.57e+033.41Brokvarterer
1.79e+07https://www.airbnb.com/rooms/17938126299       11000      Apartment2498Private room1  112FALSETRUEBispebjergmoderate12.555.71.3e+03 3.11Nordvest
1.79e+07https://www.airbnb.com/rooms/17941225199       100      Apartment2691Private room1  111FALSEFALSEIndre Byflexible12.655.7796       2.9 Center
1.79e+07https://www.airbnb.com/rooms/17942075352       100      Apartment4797Private room1  112TRUEFALSEBispebjergstrict_14_with_grace_period12.555.71.41e+033.15Nordvest
1.79e+07https://www.airbnb.com/rooms/17948420598       1500100      Apartment1091Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.73.29e+033.52Amager
1.8e+07 https://www.airbnb.com/rooms/17960155312       1900      Apartment1595Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.555.71.34e+033.13Brokvarterer
1.8e+07 https://www.airbnb.com/rooms/17967030498       100      Apartment10100Private room1  122FALSETRUEsterbrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer
1.8e+07 https://www.airbnb.com/rooms/17974503372       11000      Apartment4095Private room1  112TRUEFALSEFrederiksbergmoderate12.655.71.59e+033.2 Brokvarterer
1.8e+07 https://www.airbnb.com/rooms/18003260452       21500      Condominium8393Private room1  112FALSETRUEIndre Byflexible12.655.71.96e+033.29Center
1.8e+07 https://www.airbnb.com/rooms/18013013352       20300      Apartment3594Private room1  112FALSETRUEFrederiksbergflexible12.655.71.41e+033.15Brokvarterer
1.8e+07 https://www.airbnb.com/rooms/18014316399       150150      Apartment6797Private room1  112FALSETRUEAmager Vestmoderate12.655.62.25e+033.35Amager
1.8e+07 https://www.airbnb.com/rooms/18037149299       100      Apartment4299Private room1  111TRUETRUEVanlsestrict_14_with_grace_period12.555.71.2e+03 3.08Nordvest
1.81e+07https://www.airbnb.com/rooms/18085359345       11200      Apartment8993Private room1  112FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.5e+03 3.18Nordvest
1.81e+07https://www.airbnb.com/rooms/18086205306       100      Apartment2897Private room1  111FALSEFALSEsterbroflexible12.655.71.22e+033.09Brokvarterer
1.81e+07https://www.airbnb.com/rooms/18086469279       112050      Apartment6591Private room1  111FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.44e+033.16Nordvest
1.81e+07https://www.airbnb.com/rooms/18107820498       11500      Apartment3497Private room1  112FALSETRUEIndre Byflexible12.655.72.14e+033.33Center
1.81e+07https://www.airbnb.com/rooms/18134314399       2200150      Apartment1799Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.8e+03 3.25Brokvarterer
1.81e+07https://www.airbnb.com/rooms/18138750605       150150      Apartment2593Private room1  122FALSEFALSENrrebromoderate12.655.73.07e+033.49Brokvarterer
1.82e+07https://www.airbnb.com/rooms/18157959392       169199      Apartment1093Private room1  112FALSETRUEAmager Vestflexible12.655.72.43e+033.39Amager
1.82e+07https://www.airbnb.com/rooms/18184849299       15297      Apartment3394Private room1  112FALSEFALSENrrebroflexible12.655.71.64e+033.21Brokvarterer
1.82e+07https://www.airbnb.com/rooms/18191280199       10100      Apartment1393Private room1  011FALSETRUEAmager Vestflexible12.655.71.2e+03 3.08Amager
1.82e+07https://www.airbnb.com/rooms/18191683385       240195      Apartment5795Private room1  112FALSEFALSEValbymoderate12.555.71.58e+033.2 West
1.82e+07https://www.airbnb.com/rooms/18201697345       11000      Apartment5693Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.555.71.48e+033.17Brokvarterer
1.82e+07https://www.airbnb.com/rooms/18218584751       15000      Apartment1198Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.73.5e+03 3.54Brokvarterer
1.82e+07https://www.airbnb.com/rooms/18218713399       100      Apartment3194Private room1  112FALSEFALSEValbyflexible12.555.71.6e+03 3.2 West
1.82e+07https://www.airbnb.com/rooms/18238100498       2350200      Apartment4899Private room1  112TRUETRUEsterbromoderate12.655.72.34e+033.37Brokvarterer
1.82e+07https://www.airbnb.com/rooms/18242845385       13000      Apartment2299Private room1.5122FALSETRUENrrebromoderate12.555.71.84e+033.26Brokvarterer
1.83e+07https://www.airbnb.com/rooms/18287526352       12500      Apartment1996Private room1  112FALSETRUEBispebjergflexible12.555.71.66e+033.22Nordvest
1.83e+07https://www.airbnb.com/rooms/18287739352       12000      Apartment2697Private room1  112FALSEFALSEVanlsemoderate12.555.71.61e+033.21Nordvest
1.84e+07https://www.airbnb.com/rooms/18367064345       120075      Apartment1098Private room1  111FALSETRUENrrebroflexible12.655.71.88e+033.27Brokvarterer
1.84e+07https://www.airbnb.com/rooms/18385711239       11200      Apartment5795Private room1  111FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.08e+033.03Nordvest
1.84e+07https://www.airbnb.com/rooms/18390509498       214999      Apartment1496Private room1  033FALSEFALSEAmager Vestmoderate12.655.72.14e+033.33Amager
1.84e+07https://www.airbnb.com/rooms/18398844352       11700      Apartment15100Private room1  112TRUETRUEAmager stmoderate12.655.71.58e+033.2 Amager
1.84e+07https://www.airbnb.com/rooms/18409775950       11800      Apartment1392Private room1  122FALSEFALSEIndre Byflexible12.655.73.98e+033.6 Center
1.84e+07https://www.airbnb.com/rooms/18425260252       100      Apartment1994Private room1  111FALSETRUEValbyflexible12.555.71.01e+033   West
1.85e+07https://www.airbnb.com/rooms/18474104452       12500      Townhouse6499Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.06e+033.31Brokvarterer
1.85e+07https://www.airbnb.com/rooms/18505185352       11100      Apartment2694Private room1  112FALSETRUEBispebjergmoderate12.555.71.52e+033.18Nordvest
1.85e+07https://www.airbnb.com/rooms/18539305452       100      Apartment3192Private room1  112FALSETRUEAmager Vestflexible12.655.71.81e+033.26Amager
1.85e+07https://www.airbnb.com/rooms/18542758352       21001e+03      Apartment3795Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.51e+033.18Amager
1.86e+07https://www.airbnb.com/rooms/18590671239       10120      Apartment4698Private room1  001TRUETRUEsterbroflexible12.655.71.44e+033.16Brokvarterer
1.86e+07https://www.airbnb.com/rooms/18621872239       150100      Apartment1895Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.41e+033.15Brokvarterer
1.87e+07https://www.airbnb.com/rooms/18686581425       1125100      Apartment4497Private room1  112TRUETRUENrrebroflexible12.555.72.22e+033.35Brokvarterer
1.87e+07https://www.airbnb.com/rooms/186877681e+03       10659      Apartment2493Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.76.65e+033.82Brokvarterer
1.87e+07https://www.airbnb.com/rooms/18711110399       100      Apartment9190Private room0.5112FALSEFALSENrrebroflexible12.655.71.6e+03 3.2 Brokvarterer
1.87e+07https://www.airbnb.com/rooms/18719656352       10150      Apartment3693Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.01e+033.3 Brokvarterer
1.87e+07https://www.airbnb.com/rooms/18723206498       100      Apartment1898Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.99e+033.3 Center
1.88e+07https://www.airbnb.com/rooms/18750251352       100      Apartment18100Private room1  112FALSEFALSENrrebroflexible12.555.71.41e+033.15Brokvarterer
1.88e+07https://www.airbnb.com/rooms/18785449432       100      Other6391Private room1.5122FALSETRUEAmager stflexible12.655.61.73e+033.24Amager
1.88e+07https://www.airbnb.com/rooms/18785953478       100      Apartment1998Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.91e+033.28Brokvarterer
1.88e+07https://www.airbnb.com/rooms/18798700385       1150100      House3496Private room1  112FALSEFALSEBispebjergflexible12.555.72.09e+033.32Nordvest
1.88e+07https://www.airbnb.com/rooms/18813923312       1185160      Apartment1092Private room1  113FALSETRUEsterbrostrict_14_with_grace_period12.655.72.07e+033.32Brokvarterer
1.89e+07https://www.airbnb.com/rooms/18871990797       110050      Apartment2991Private room1  102FALSETRUEAmager ststrict_14_with_grace_period12.655.73.49e+033.54Amager
1.89e+07https://www.airbnb.com/rooms/18873599697       100      Apartment3699Private room1  034TRUETRUEAmager stmoderate12.655.72.79e+033.45Amager
1.89e+07https://www.airbnb.com/rooms/18882536498       100      Apartment1198Private room1  112FALSEFALSEIndre Bymoderate12.655.71.99e+033.3 Center
1.89e+07https://www.airbnb.com/rooms/18894646352       100      Apartment21099Private room1  111TRUETRUEAmager stflexible12.655.71.41e+033.15Amager
1.89e+07https://www.airbnb.com/rooms/18902129399       100      Apartment22895Private room1  111FALSETRUEFrederiksbergflexible12.555.71.6e+03 3.2 Brokvarterer
1.89e+07https://www.airbnb.com/rooms/18908041359       1100100      Apartment9997Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.71.94e+033.29Brokvarterer
1.89e+07https://www.airbnb.com/rooms/189107641.2e+03 4149224      Apartment4894Private room1  146FALSEFALSEIndre Byflexible12.655.74.93e+033.69Center
1.89e+07https://www.airbnb.com/rooms/18910786498       2200200      Apartment10100Private room1  122FALSETRUEAmager Vestmoderate12.655.72.19e+033.34Amager
1.89e+07https://www.airbnb.com/rooms/18922548744       1475120      Apartment6398Private room1  112TRUETRUEIndre Byflexible12.655.73.93e+033.59Center
1.89e+07https://www.airbnb.com/rooms/18929054173       10150      Apartment4199Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.29e+033.11Brokvarterer
1.9e+07 https://www.airbnb.com/rooms/18950960352       1750      Condominium1193Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.48e+033.17West
1.9e+07 https://www.airbnb.com/rooms/18958914339       1045      Apartment2191Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.54e+033.19Brokvarterer
1.9e+07 https://www.airbnb.com/rooms/18967179751       10200      Apartment12100Private room1  112FALSETRUEFrederiksbergmoderate12.555.73.8e+03 3.58Brokvarterer
1.9e+07 https://www.airbnb.com/rooms/18971037751       1200250      Apartment1699Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.74.2e+03 3.62Brokvarterer
1.9e+07 https://www.airbnb.com/rooms/18973115352       10100      Apartment1699Private room1.5112FALSETRUEsterbromoderate12.655.71.81e+033.26Brokvarterer
1.9e+07 https://www.airbnb.com/rooms/18995258498       2275650      Apartment9097Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.27e+033.36Brokvarterer
1.9e+07 https://www.airbnb.com/rooms/19024464286       1300199      Apartment1297Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.24e+033.35Brokvarterer
1.9e+07 https://www.airbnb.com/rooms/19025050399       2100150      Apartment3892Private room1  122FALSETRUEValbymoderate12.555.71.7e+03 3.23West
1.9e+07 https://www.airbnb.com/rooms/19030871352       11500      Apartment1495Private room1  112FALSETRUEFrederiksbergflexible12.555.71.56e+033.19Brokvarterer
1.91e+07https://www.airbnb.com/rooms/19084886352       100      Apartment1295Private room1  122FALSETRUEValbyflexible12.555.71.41e+033.15West
1.91e+07https://www.airbnb.com/rooms/19089527199       1150135      Apartment3494Private room1  112FALSETRUENrrebromoderate12.655.71.49e+033.17Brokvarterer
1.91e+07https://www.airbnb.com/rooms/19112379452       21500      Townhouse7099Private room1  122TRUETRUEFrederiksbergmoderate12.555.71.96e+033.29Brokvarterer
1.91e+07https://www.airbnb.com/rooms/19117655399       280100      Apartment3099Private room1  123FALSETRUEAmager stmoderate12.655.71.68e+033.22Amager
1.91e+07https://www.airbnb.com/rooms/19135934399       13500      Apartment2498Private room1  112FALSEFALSEFrederiksbergmoderate12.655.71.95e+033.29Brokvarterer
1.92e+07https://www.airbnb.com/rooms/19150296551       1245100      Apartment1498Private room1  022FALSEFALSENrrebromoderate12.555.72.85e+033.45Brokvarterer
1.92e+07https://www.airbnb.com/rooms/19166934299       2150150      Apartment2694Private room1.5112FALSETRUEsterbroflexible12.655.71.35e+033.13Brokvarterer
1.92e+07https://www.airbnb.com/rooms/19177904299       189373      Apartment10599Private room1  111TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.78e+033.44Amager
1.92e+07https://www.airbnb.com/rooms/19241525299       190100      Apartment1696Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.71.69e+033.23Brokvarterer
1.93e+07https://www.airbnb.com/rooms/19262602399       10200      Apartment3493Private room1  111FALSEFALSEsterbromoderate12.655.72.4e+03 3.38Brokvarterer
1.93e+07https://www.airbnb.com/rooms/19268790392       2250100      Apartment102100Private room1  112FALSETRUEsterbromoderate12.655.71.82e+033.26Brokvarterer
1.93e+07https://www.airbnb.com/rooms/19302727332       15065      Apartment19100Private room1  112FALSETRUEFrederiksbergmoderate12.655.71.64e+033.21Brokvarterer
1.93e+07https://www.airbnb.com/rooms/19329996598       10100      Apartment11100Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.72.79e+033.45Brokvarterer
1.93e+07https://www.airbnb.com/rooms/19345736498       100      House1096Private room1  122TRUETRUEAmager Vestmoderate12.655.61.99e+033.3 Amager
1.94e+07https://www.airbnb.com/rooms/193703195e+03       145100      Apartment17991Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.05e+044.31Brokvarterer
1.94e+07https://www.airbnb.com/rooms/19373432498       12500      Other12297Private room1  112FALSEFALSEFrederiksbergflexible12.655.72.24e+033.35Brokvarterer
1.94e+07https://www.airbnb.com/rooms/19373666326       1100190      Apartment12194Private room1  112TRUEFALSEsterbrostrict_14_with_grace_period12.655.72.16e+033.34Brokvarterer
1.94e+07https://www.airbnb.com/rooms/19376595199       1150125      Condominium1195Private room1  113FALSETRUEVanlsestrict_14_with_grace_period12.555.71.45e+033.16Nordvest
1.94e+07https://www.airbnb.com/rooms/19379916372       100      Apartment2396Private room1  111FALSETRUEFrederiksbergflexible12.655.71.49e+033.17Brokvarterer
1.94e+07https://www.airbnb.com/rooms/19383408498       100      Apartment1293Private room1  112FALSETRUEIndre Bymoderate12.655.71.99e+033.3 Center
1.94e+07https://www.airbnb.com/rooms/19393240299       100      Apartment1195Private room1  122FALSETRUEVanlseflexible12.555.71.2e+03 3.08Nordvest
1.94e+07https://www.airbnb.com/rooms/19419406452       100      House10898Private room1  112TRUETRUEAmager stmoderate12.655.61.81e+033.26Amager
1.94e+07https://www.airbnb.com/rooms/19429866498       1500      Apartment2991Private room1  122FALSETRUEsterbroflexible12.655.72.04e+033.31Brokvarterer
1.94e+07https://www.airbnb.com/rooms/19445943452       100      Apartment2490Private room1  112FALSETRUEAmager stmoderate12.655.71.81e+033.26Amager
1.94e+07https://www.airbnb.com/rooms/19449934425       17570      Apartment1599Private room1  112FALSEFALSEValbyflexible12.555.72.06e+033.31West
1.95e+07https://www.airbnb.com/rooms/19465963332       215050      Apartment2191Private room1  123FALSETRUEAmager stmoderate12.655.71.48e+033.17Amager
1.95e+07https://www.airbnb.com/rooms/19470146498       20109      Apartment4692Private room1  122FALSEFALSEAmager ststrict_14_with_grace_period12.655.71.99e+033.3 Amager
1.95e+07https://www.airbnb.com/rooms/19503407498       100      Apartment1394Private room1  011TRUETRUEIndre Byflexible12.655.71.99e+033.3 Center
1.95e+07https://www.airbnb.com/rooms/19549045498       100      Apartment3199Private room1  112FALSEFALSEIndre Byflexible12.655.71.99e+033.3 Center
1.96e+07https://www.airbnb.com/rooms/19561679511       11490      Apartment5795Private room1  112FALSETRUEFrederiksbergflexible12.555.72.19e+033.34Brokvarterer
1.96e+07https://www.airbnb.com/rooms/19570597498       2120300      Other4098Private room1  114TRUEFALSEAmager stflexible12.655.62.11e+033.32Amager
1.96e+07https://www.airbnb.com/rooms/19580563266       100      Apartment1998Private room1  111FALSETRUEAmager Vestmoderate12.655.71.06e+033.03Amager
1.96e+07https://www.airbnb.com/rooms/19582349399       1100100      Apartment1398Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.1e+03 3.32Brokvarterer
1.96e+07https://www.airbnb.com/rooms/19582694452       1500250      Condominium10100Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.73.31e+033.52Brokvarterer
1.96e+07https://www.airbnb.com/rooms/19588342299       100      Condominium1599Private room1  112FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.71.2e+03 3.08West
1.96e+07https://www.airbnb.com/rooms/19588780193       100      Condominium11100Private room2  111FALSETRUEsterbroflexible12.655.7772       2.89Brokvarterer
1.96e+07https://www.airbnb.com/rooms/19615708498       100      Apartment6399Private room1  112TRUETRUEAmager Vestflexible12.655.71.99e+033.3 Amager
1.96e+07https://www.airbnb.com/rooms/19632039498       10200      Apartment13199Private room1  122TRUEFALSEVesterbro-Kongens Enghaveflexible12.655.72.79e+033.45Brokvarterer
1.97e+07https://www.airbnb.com/rooms/19651670359       15050      Apartment2495Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.71.69e+033.23Brokvarterer
1.97e+07https://www.airbnb.com/rooms/19655784352       100      Apartment2896Private room1  122FALSEFALSEValbymoderate12.555.71.41e+033.15West
1.97e+07https://www.airbnb.com/rooms/19677821359       1500      Apartment3697Private room1  112FALSEFALSEValbymoderate12.555.71.49e+033.17West
1.97e+07https://www.airbnb.com/rooms/19687138452       11500      Apartment2897Private room1  112FALSETRUENrrebroflexible12.655.71.96e+033.29Brokvarterer
1.97e+07https://www.airbnb.com/rooms/19693932292       10150      Apartment1196Private room1  112FALSETRUEsterbroflexible12.655.71.77e+033.25Brokvarterer
1.97e+07https://www.airbnb.com/rooms/19696495498       100      Other5793Private room1  112FALSEFALSEAmager stflexible12.655.71.99e+033.3 Amager
1.97e+07https://www.airbnb.com/rooms/19722778452       2100150      Apartment8192Private room1  114FALSETRUEsterbromoderate12.655.71.91e+033.28Brokvarterer
1.97e+07https://www.airbnb.com/rooms/19731801598       1800      Townhouse4897Private room1  112TRUETRUEIndre Bymoderate12.655.72.47e+033.39Center
1.97e+07https://www.airbnb.com/rooms/19746609299       100      Apartment1393Private room2  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.2e+03 3.08Brokvarterer
1.98e+07https://www.airbnb.com/rooms/19753550598       11000      Apartment1092Private room1  111FALSEFALSEAmager Vestflexible12.655.72.49e+033.4 Amager
1.98e+07https://www.airbnb.com/rooms/19763681438       12000      House17100Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.95e+033.29Brokvarterer
1.98e+07https://www.airbnb.com/rooms/19801709950       30200      Apartment2799Private room1  244TRUETRUEsterbroflexible12.655.73.8e+03 3.58Brokvarterer
1.98e+07https://www.airbnb.com/rooms/19814402498       100      Apartment1098Private room1  112FALSETRUEIndre Byflexible12.655.71.99e+033.3 Center
1.98e+07https://www.airbnb.com/rooms/19836054452       100      Apartment15100Private room1  111TRUEFALSEIndre Bystrict_14_with_grace_period12.655.71.81e+033.26Center
1.98e+07https://www.airbnb.com/rooms/19839869744       100      Apartment2794Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.98e+033.47Brokvarterer
1.99e+07https://www.airbnb.com/rooms/19851282498       10125      Apartment1599Private room1  224FALSETRUEAmager Vestmoderate12.655.72.49e+033.4 Amager
1.99e+07https://www.airbnb.com/rooms/19873579246       120060      Apartment11100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.42e+033.15Brokvarterer
1.99e+07https://www.airbnb.com/rooms/19886326399       100      Condominium128100Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.6e+03 3.2 Brokvarterer
1.99e+07https://www.airbnb.com/rooms/19902602452       1100120      Apartment6799Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.555.72.39e+033.38Brokvarterer
1.99e+07https://www.airbnb.com/rooms/19902819578       1120120      Apartment2695Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.72.91e+033.46Amager
1.99e+07https://www.airbnb.com/rooms/19928221299       10200      Apartment2892Private room1  112FALSETRUEVanlsestrict_14_with_grace_period12.555.72e+03       3.3 Nordvest
1.99e+07https://www.airbnb.com/rooms/19935828219       100      Apartment2292Private room1  012FALSEFALSENrrebromoderate12.655.7876       2.94Brokvarterer
2e+07       https://www.airbnb.com/rooms/19956178465       1100100      Apartment1996Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.36e+033.37Brokvarterer
2e+07       https://www.airbnb.com/rooms/19978674419       100      Apartment2094Private room1  112FALSETRUEsterbromoderate12.655.71.68e+033.22Brokvarterer
2e+07       https://www.airbnb.com/rooms/19981986458       2150200      Apartment9497Private room1  112TRUETRUEValbymoderate12.555.71.98e+033.3 West
2e+07       https://www.airbnb.com/rooms/20002449598       1100300      Apartment3398Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.555.73.69e+033.57Brokvarterer
2e+07       https://www.airbnb.com/rooms/20028752498       11500      Apartment6595Private room1  112TRUETRUEIndre Byflexible12.655.72.14e+033.33Center
2e+07       https://www.airbnb.com/rooms/20029280531       2350100      Apartment1290Private room1  113FALSETRUEIndre Bymoderate12.655.72.47e+033.39Center
2e+07       https://www.airbnb.com/rooms/20041838458       11000      Apartment27100Private room1  112FALSEFALSEsterbromoderate12.655.71.93e+033.29Brokvarterer
2e+07       https://www.airbnb.com/rooms/20041858332       1750      Apartment1397Private room1.5112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.4e+03 3.15Brokvarterer
2e+07       https://www.airbnb.com/rooms/20043812299       100      Apartment1291Private room1  111FALSETRUEAmager stmoderate12.655.71.2e+03 3.08Amager
2.01e+07https://www.airbnb.com/rooms/20060114697       15000      Apartment6997Private room1  244TRUEFALSEsterbromoderate12.655.73.29e+033.52Brokvarterer
2.01e+07https://www.airbnb.com/rooms/20060237485       100      Other10392Private room1  112FALSETRUEIndre Byflexible12.655.71.94e+033.29Center
2.01e+07https://www.airbnb.com/rooms/20121448392       14990      Condominium2497Private room1  112TRUETRUENrrebromoderate12.555.72.07e+033.32Brokvarterer
2.01e+07https://www.airbnb.com/rooms/20135357432       11300      Apartment23496Private room1  112TRUETRUEIndre Byflexible12.655.71.86e+033.27Center
2.01e+07https://www.airbnb.com/rooms/20141519458       1060      Apartment6294Private room1  102FALSEFALSEsterbroflexible12.655.72.07e+033.32Brokvarterer
2.02e+07https://www.airbnb.com/rooms/20188270452       100      Apartment3197Private room1  112TRUEFALSEAmager stflexible12.655.71.81e+033.26Amager
2.02e+07https://www.airbnb.com/rooms/20189430598       11500      Apartment3297Private room1  112FALSETRUEFrederiksbergflexible12.655.72.54e+033.41Brokvarterer
2.02e+07https://www.airbnb.com/rooms/20212715352       1100100      Condominium1395Private room1  112FALSETRUEFrederiksbergflexible12.555.71.91e+033.28Brokvarterer
2.02e+07https://www.airbnb.com/rooms/20223600392       1100125      House2699Private room1  111TRUETRUEAmager Vestmoderate12.655.62.17e+033.34Amager
2.02e+07https://www.airbnb.com/rooms/20228552299       100      Apartment1295Private room1  112FALSETRUEBispebjergflexible12.555.71.2e+03 3.08Nordvest
2.03e+07https://www.airbnb.com/rooms/20279730299       15050      Apartment11100Private room1  112FALSETRUEFrederiksbergflexible12.555.71.45e+033.16Brokvarterer
2.03e+07https://www.airbnb.com/rooms/20294841498       31000      House6996Private room1  123TRUETRUEBispebjergflexible12.655.72.09e+033.32Nordvest
2.03e+07https://www.airbnb.com/rooms/20324052452       11250      Apartment5397Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.93e+033.29Brokvarterer
2.03e+07https://www.airbnb.com/rooms/20327436206       100      Apartment1699Private room1  112FALSETRUEBispebjergflexible12.555.7824       2.92Nordvest
2.03e+07https://www.airbnb.com/rooms/20346753452       11000      Apartment1394Private room1  122FALSETRUEIndre Byflexible12.655.71.91e+033.28Center
2.04e+07https://www.airbnb.com/rooms/20356756352       11000      Apartment8593Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.51e+033.18Brokvarterer
2.04e+07https://www.airbnb.com/rooms/20376992405       2350100      Apartment13893Private room1  113TRUETRUEIndre Byflexible12.655.71.97e+033.29Center
2.04e+07https://www.airbnb.com/rooms/20382007452       20200      Apartment2999Private room1  124TRUETRUENrrebroflexible12.655.71.81e+033.26Brokvarterer
2.04e+07https://www.airbnb.com/rooms/20385251372       2150100      Apartment5198Private room1  122TRUETRUEFrederiksbergflexible12.555.71.64e+033.21Brokvarterer
2.04e+07https://www.airbnb.com/rooms/20436408498       1500      Apartment1198Private room1  112FALSEFALSEAmager Vestmoderate12.655.72.04e+033.31Amager
2.04e+07https://www.airbnb.com/rooms/20436469399       1250100      House6292Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.25e+033.35Brokvarterer
2.04e+07https://www.airbnb.com/rooms/20443736551       100      Apartment1899Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.2e+03 3.34Brokvarterer
2.05e+07https://www.airbnb.com/rooms/20476614352       1100120      Apartment1298Private room1  112FALSETRUEsterbromoderate12.655.71.99e+033.3 Brokvarterer
2.05e+07https://www.airbnb.com/rooms/20510605199       1150149      Apartment1592Private room1  012FALSETRUEAmager stflexible12.655.71.54e+033.19Amager
2.06e+07https://www.airbnb.com/rooms/20551052976       100      House2299Private room1  345TRUETRUEBrnshj-Husumflexible12.555.73.9e+03 3.59West
2.06e+07https://www.airbnb.com/rooms/20588487751       1750      Apartment2899Private room1  112FALSETRUEAmager Vestmoderate12.655.73.08e+033.49Amager
2.06e+07https://www.airbnb.com/rooms/20629276299       100      Apartment1295Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.2e+03 3.08Brokvarterer
2.07e+07https://www.airbnb.com/rooms/20661849399       1250200      Apartment4594Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.65e+033.42Brokvarterer
2.07e+07https://www.airbnb.com/rooms/20664377352       1250200      Apartment1695Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.46e+033.39Brokvarterer
2.07e+07https://www.airbnb.com/rooms/20692228452       1150200      Apartment1098Private room1  111FALSEFALSEIndre Bymoderate12.655.72.76e+033.44Center
2.07e+07https://www.airbnb.com/rooms/20707331452       2300200      Apartment9297Private room1.5112TRUETRUENrrebromoderate12.555.72.11e+033.32Brokvarterer
2.08e+07https://www.airbnb.com/rooms/20793730399       100      Apartment9099Private room1  112TRUETRUEIndre Byflexible12.655.71.6e+03 3.2 Center
2.09e+07https://www.airbnb.com/rooms/20871744299       11000      Apartment7697Private room1  111TRUETRUEFrederiksbergflexible12.555.71.3e+03 3.11Brokvarterer
2.09e+07https://www.airbnb.com/rooms/20879007764       16666      Apartment1992Private room1  122TRUETRUEAmager stmoderate12.655.73.39e+033.53Amager
2.09e+07https://www.airbnb.com/rooms/20879555352       11e+0350      Apartment1198Private room1  112FALSETRUENrrebroflexible12.655.72.61e+033.42Brokvarterer
2.09e+07https://www.airbnb.com/rooms/20893496598       13500      Apartment3099Private room1  122TRUETRUEsterbromoderate12.655.72.74e+033.44Brokvarterer
2.09e+07https://www.airbnb.com/rooms/20907750492       10200      House4093Private room1  112FALSETRUEIndre Byflexible12.655.72.77e+033.44Center
2.09e+07https://www.airbnb.com/rooms/20923083233       125090      Townhouse9495Private room1  112FALSEFALSEAmager Vestmoderate12.655.61.54e+033.19Amager
2.1e+07 https://www.airbnb.com/rooms/20966472232       150120      Apartment1797Private room1  111FALSETRUEAmager Vestflexible12.655.71.46e+033.16Amager
2.1e+07 https://www.airbnb.com/rooms/20978118325       100      Apartment7398Private room1  111FALSETRUEFrederiksbergflexible12.555.71.3e+03 3.11Brokvarterer
2.1e+07 https://www.airbnb.com/rooms/20992289452       17550      Apartment3294Private room1  112FALSETRUEsterbromoderate12.655.72.08e+033.32Brokvarterer
2.1e+07 https://www.airbnb.com/rooms/21001032279       1750      Apartment11100Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.19e+033.08Brokvarterer
2.1e+07 https://www.airbnb.com/rooms/21044101299       100      Apartment1698Private room1  112FALSEFALSEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer
2.11e+07https://www.airbnb.com/rooms/21065491399       1900      Apartment2798Private room1  112TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.69e+033.23Brokvarterer
2.11e+07https://www.airbnb.com/rooms/21073816352       100      Apartment2898Private room1  111TRUETRUEAmager Vestflexible12.655.71.41e+033.15Amager
2.11e+07https://www.airbnb.com/rooms/21091973399       10150      Apartment2597Private room1  011TRUEFALSENrrebroflexible12.655.72.2e+03 3.34Brokvarterer
2.11e+07https://www.airbnb.com/rooms/21138761678       2250350      Apartment6998Private room1  102TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.96e+033.47Brokvarterer
2.11e+07https://www.airbnb.com/rooms/21141412392       15050      Apartment2397Private room1  111TRUETRUEAmager Vestflexible12.655.71.82e+033.26Amager
2.12e+07https://www.airbnb.com/rooms/21163339292       1500      Apartment1096Private room1  112TRUEFALSENrrebromoderate12.555.71.22e+033.09Brokvarterer
2.12e+07https://www.airbnb.com/rooms/21208680452       179150      Apartment1897Private room1  112FALSEFALSENrrebromoderate12.655.72.49e+033.4 Brokvarterer
2.13e+07https://www.airbnb.com/rooms/21262425452       200      Apartment2897Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.555.71.81e+033.26Brokvarterer
2.13e+07https://www.airbnb.com/rooms/21274710266       12000      House15793Private room1  122FALSETRUEAmager ststrict_14_with_grace_period12.655.71.26e+033.1 Amager
2.13e+07https://www.airbnb.com/rooms/21277004385       2300400      Apartment2598Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.655.61.84e+033.26Brokvarterer
2.13e+07https://www.airbnb.com/rooms/21289602352       1300200      Apartment7594Private room1  101FALSETRUEIndre Byflexible12.655.72.51e+033.4 Center
2.13e+07https://www.airbnb.com/rooms/21289914492       100      Apartment1897Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.97e+033.29Brokvarterer
2.13e+07https://www.airbnb.com/rooms/21293596651       1520100      Apartment5095Private room1  112TRUEFALSEIndre Byflexible12.655.73.52e+033.55Center
2.13e+07https://www.airbnb.com/rooms/21315290352       1250200      Apartment1698Private room1  112TRUETRUEIndre Bymoderate12.655.72.46e+033.39Center
2.13e+07https://www.airbnb.com/rooms/21348528352       1250200      Apartment2097Private room1  111TRUETRUEIndre Bymoderate12.655.72.46e+033.39Center
2.14e+07https://www.airbnb.com/rooms/21360892399       125075      Condominium6198Private room1  112TRUETRUEAmager ststrict_14_with_grace_period12.655.72.15e+033.33Amager
2.14e+07https://www.airbnb.com/rooms/21443084419       10125      Apartment10598Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.18e+033.34Brokvarterer
2.14e+07https://www.airbnb.com/rooms/21447727352       1250200      Apartment2997Private room1  111TRUETRUEIndre Bymoderate12.655.72.46e+033.39Center
2.15e+07https://www.airbnb.com/rooms/21456409452       100      Apartment1898Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.81e+033.26Brokvarterer
2.15e+07https://www.airbnb.com/rooms/21469417146       10200      Apartment3695Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.38e+033.14Brokvarterer
2.15e+07https://www.airbnb.com/rooms/21523040419       10100      Apartment1599Private room1  122TRUETRUEsterbromoderate12.655.72.08e+033.32Brokvarterer
2.15e+07https://www.airbnb.com/rooms/21548606452       11000      Apartment6696Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.61.91e+033.28Brokvarterer
2.16e+07https://www.airbnb.com/rooms/21579637252       1330      Apartment5699Private room1  111TRUETRUEFrederiksbergflexible12.655.71.04e+033.02Brokvarterer
2.16e+07https://www.airbnb.com/rooms/21617105332       100      Apartment2498Private room1  112FALSETRUEsterbroflexible12.655.71.33e+033.12Brokvarterer
2.17e+07https://www.airbnb.com/rooms/21659212598       1350145      Apartment7498Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.32e+033.52Center
2.17e+07https://www.airbnb.com/rooms/21672404399       1050      Apartment2597Private room1  112FALSEFALSEsterbroflexible12.655.71.8e+03 3.25Brokvarterer
2.18e+07https://www.airbnb.com/rooms/21765429399       100      Apartment3393Private room1  122FALSETRUENrrebrostrict_14_with_grace_period12.655.71.6e+03 3.2 Brokvarterer
2.18e+07https://www.airbnb.com/rooms/21777987352       1650      Apartment10100Private room1.5112FALSETRUENrrebromoderate12.555.71.47e+033.17Brokvarterer
2.18e+07https://www.airbnb.com/rooms/21804827452       100      Apartment1093Private room1  112FALSEFALSEsterbroflexible12.655.71.81e+033.26Brokvarterer
2.18e+07https://www.airbnb.com/rooms/21849053452       17575      Apartment2399Private room1  111TRUETRUEIndre Byflexible12.655.72.18e+033.34Center
2.2e+07 https://www.airbnb.com/rooms/21961324751       100      Apartment8396Private room1  122FALSETRUEIndre Byflexible12.655.73e+03       3.48Center
2.2e+07 https://www.airbnb.com/rooms/21963885897       2350200      Apartment2294Private room1  114FALSETRUEVesterbro-Kongens Enghavemoderate12.655.73.94e+033.6 Brokvarterer
2.2e+07 https://www.airbnb.com/rooms/21970408299       1700      Apartment5991Private room1  102FALSEFALSEValbyflexible12.555.71.27e+033.1 West
2.2e+07 https://www.airbnb.com/rooms/21975246173       100      Apartment1496Private room1  112FALSETRUEVanlseflexible12.555.7692       2.84Nordvest
2.2e+07 https://www.airbnb.com/rooms/21992570332       1750      Apartment1599Private room1  112FALSEFALSEAmager Vestflexible12.655.61.4e+03 3.15Amager
2.2e+07 https://www.airbnb.com/rooms/22046795299       1150175      Apartment2999Private room1  122TRUETRUEVanlseflexible12.555.72.05e+033.31Nordvest
2.21e+07https://www.airbnb.com/rooms/22084407399       2200100      Apartment2496Private room1  123FALSETRUEAmager stflexible12.655.71.8e+03 3.25Amager
2.21e+07https://www.airbnb.com/rooms/22101595266       18090      Townhouse2798Private room2  121FALSETRUEAmager Vestmoderate12.655.61.5e+03 3.18Amager
2.22e+07https://www.airbnb.com/rooms/22246331252       1300      Apartment3792Private room1  112FALSETRUEAmager Vestmoderate12.655.71.04e+033.02Amager
2.23e+07https://www.airbnb.com/rooms/22261416850       2310300      Apartment2192Private room1.5122FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.73.71e+033.57Brokvarterer
2.23e+07https://www.airbnb.com/rooms/22264225299       100      Apartment13100Private room1  111FALSEFALSENrrebrostrict_14_with_grace_period12.555.71.2e+03 3.08Brokvarterer
2.23e+07https://www.airbnb.com/rooms/22287222332       18050      Apartment1898Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.61e+033.21Brokvarterer
2.23e+07https://www.airbnb.com/rooms/22305846299       2150150      Apartment2095Private room1.5144FALSETRUENrrebromoderate12.555.71.35e+033.13Brokvarterer
2.23e+07https://www.airbnb.com/rooms/22336351452       100      House9498Private room1  122TRUETRUEAmager stmoderate12.655.61.81e+033.26Amager
2.24e+07https://www.airbnb.com/rooms/22350241498       2400300      Townhouse11096Private room1  122FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.39e+033.38Center
2.24e+07https://www.airbnb.com/rooms/22356321352       135100      House11190Private room1  122FALSETRUEAmager Vestmoderate12.655.61.84e+033.27Amager
2.24e+07https://www.airbnb.com/rooms/22406518438       100      Apartment5491Private room1  112FALSETRUENrrebroflexible12.655.71.75e+033.24Brokvarterer
2.24e+07https://www.airbnb.com/rooms/22440451279       100      Apartment2596Private room1  012FALSEFALSEAmager stmoderate12.655.71.12e+033.05Amager
2.25e+07https://www.airbnb.com/rooms/22459805233       100      Apartment1297Private room1  112FALSETRUEBispebjergmoderate12.555.7932       2.97Nordvest
2.25e+07https://www.airbnb.com/rooms/22530215598       1100400      Apartment25100Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.74.09e+033.61Center
2.25e+07https://www.airbnb.com/rooms/22539491332       1300150      Apartment1999Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.655.72.23e+033.35Brokvarterer
2.26e+07https://www.airbnb.com/rooms/22564689405       10149      Apartment1098Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.22e+033.35Center
2.26e+07https://www.airbnb.com/rooms/22579197199       1180190      Apartment2398Private room1.5002TRUETRUEBispebjergmoderate12.555.71.74e+033.24Nordvest
2.26e+07https://www.airbnb.com/rooms/22594454352       100      Apartment1498Private room1  112FALSETRUEsterbromoderate12.655.71.41e+033.15Brokvarterer
2.26e+07https://www.airbnb.com/rooms/22632431598       100      Apartment28100Private room1  112TRUETRUEValbymoderate12.555.72.39e+033.38West
2.27e+07https://www.airbnb.com/rooms/22715827399       100      Apartment11100Private room1  112TRUETRUEIndre Byflexible12.655.71.6e+03 3.2 Center
2.28e+07https://www.airbnb.com/rooms/22839284352       100      Apartment3498Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.41e+033.15Brokvarterer
2.28e+07https://www.airbnb.com/rooms/22840932372       25075      Apartment15100Private room2  112FALSETRUEBrnshj-Husummoderate12.555.71.54e+033.19West
2.28e+07https://www.airbnb.com/rooms/22844933598       12500      Apartment12100Private room1.5112TRUETRUENrrebroflexible12.555.72.64e+033.42Brokvarterer
2.29e+07https://www.airbnb.com/rooms/22857727399       10100      Apartment1194Private room1  111FALSEFALSEValbyflexible12.555.72e+03       3.3 West
2.29e+07https://www.airbnb.com/rooms/22857959392       150150      Townhouse9391Private room1  112FALSETRUEValbymoderate12.555.72.22e+033.35West
2.29e+07https://www.airbnb.com/rooms/22875033452       100      Apartment6799Private room1.5112TRUETRUEAmager Vestflexible12.655.61.81e+033.26Amager
2.29e+07https://www.airbnb.com/rooms/22875266252       11000      Apartment4599Private room1  112TRUETRUEFrederiksbergmoderate12.555.71.11e+033.04Brokvarterer
2.29e+07https://www.airbnb.com/rooms/22876836252       160100      Apartment2996Private room1  102TRUETRUEAmager Vestmoderate12.655.71.47e+033.17Amager
2.29e+07https://www.airbnb.com/rooms/22925158485       1750      Apartment12100Private room1  102FALSETRUENrrebromoderate12.555.72.02e+033.3 Brokvarterer
2.29e+07https://www.airbnb.com/rooms/22949105418       110050      Apartment3296Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.61.97e+033.29Amager
2.3e+07 https://www.airbnb.com/rooms/23001413452       11000      Apartment12100Private room1  112FALSETRUEAmager stflexible12.655.71.91e+033.28Amager
2.31e+07https://www.airbnb.com/rooms/23088612286       1600      House14799Private room1  111TRUETRUEBrnshj-Husumflexible12.555.71.2e+03 3.08West
2.32e+07https://www.airbnb.com/rooms/23160214492       100      Apartment1990Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.97e+033.29Brokvarterer
2.32e+07https://www.airbnb.com/rooms/23173826352       100      Apartment1993Private room1  112FALSETRUENrrebroflexible12.555.71.41e+033.15Brokvarterer
2.32e+07https://www.airbnb.com/rooms/23211526452       2150100      House3598Private room1  224TRUETRUEAmager stmoderate12.655.71.96e+033.29Amager
2.32e+07https://www.airbnb.com/rooms/23235538246       100      Other8098Private room1  101FALSETRUEVanlseflexible12.555.7984       2.99Nordvest
2.33e+07https://www.airbnb.com/rooms/23271019399       100      Apartment11294Private room1  111FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.6e+03 3.2 Brokvarterer
2.33e+07https://www.airbnb.com/rooms/23291083379       11040      Condominium5497Private room1  112FALSEFALSEsterbrostrict_14_with_grace_period12.655.71.62e+033.21Brokvarterer
2.33e+07https://www.airbnb.com/rooms/23291437598       12000      Townhouse3298Private room1  122TRUEFALSEAmager Veststrict_14_with_grace_period12.655.72.59e+033.41Amager
2.33e+07https://www.airbnb.com/rooms/23322561299       100      Apartment1297Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.2e+03 3.08Brokvarterer
2.33e+07https://www.airbnb.com/rooms/23325848598       10150      Condominium3498Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.99e+033.48Brokvarterer
2.34e+07https://www.airbnb.com/rooms/23353930598       100      Apartment2999Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.39e+033.38Brokvarterer
2.34e+07https://www.airbnb.com/rooms/23407106399       10100      Apartment10699Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.62e+03       3.3 Brokvarterer
2.34e+07https://www.airbnb.com/rooms/23410902452       11000      Apartment2499Private room1  112FALSETRUEIndre Byflexible12.655.71.91e+033.28Center
2.34e+07https://www.airbnb.com/rooms/23436840399       250150      Apartment1296Private room1  123FALSEFALSEAmager stflexible12.655.71.65e+033.22Amager
2.35e+07https://www.airbnb.com/rooms/23461373598       12750      Apartment2799Private room1  122FALSETRUEIndre Byflexible12.655.72.67e+033.43Center
2.35e+07https://www.airbnb.com/rooms/23492145698       100      Apartment9998Private room1  012TRUETRUEIndre Bymoderate12.655.72.79e+033.45Center
2.35e+07https://www.airbnb.com/rooms/23492723299       100      Apartment1491Private room1  112TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.2e+03 3.08Nordvest
2.35e+07https://www.airbnb.com/rooms/23494797452       115070      Apartment3099Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.72.24e+033.35Brokvarterer
2.35e+07https://www.airbnb.com/rooms/23512954292       1150100      Apartment1297Private room1  112FALSETRUEAmager Vestmoderate12.655.71.72e+033.24Amager
2.36e+07https://www.airbnb.com/rooms/23562469452       12000      Apartment4099Private room1  112FALSETRUEsterbromoderate12.655.72.01e+033.3 Brokvarterer
2.36e+07https://www.airbnb.com/rooms/23573487399       2250150      Apartment1094Private room1  112FALSETRUEsterbroflexible12.655.71.85e+033.27Brokvarterer
2.36e+07https://www.airbnb.com/rooms/23589875246       12000      Apartment1395Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.18e+033.07Brokvarterer
2.36e+07https://www.airbnb.com/rooms/23592812498       13000      Apartment2195Private room1  244FALSETRUENrrebroflexible12.555.72.29e+033.36Brokvarterer
2.36e+07https://www.airbnb.com/rooms/23620883372       12000      Apartment3993Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.69e+033.23Brokvarterer
2.36e+07https://www.airbnb.com/rooms/23643275306       1500      Apartment2393Private room1  112TRUETRUENrrebroflexible12.655.71.27e+033.11Brokvarterer
2.36e+07https://www.airbnb.com/rooms/23647001498       225075      House6198Private room1  034TRUETRUEBrnshj-Husumflexible12.555.72.24e+033.35West
2.37e+07https://www.airbnb.com/rooms/23657190551       1100100      Condominium1293Private room1.5111FALSETRUEIndre Bymoderate12.655.72.7e+03 3.43Center
2.37e+07https://www.airbnb.com/rooms/23663828452       12000      Apartment1597Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.01e+033.3 Brokvarterer
2.37e+07https://www.airbnb.com/rooms/23665966399       1175400      Apartment2899Private room1  111TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.37e+033.53Center
2.37e+07https://www.airbnb.com/rooms/23702407777       100      Apartment1593Private room1  112FALSETRUENrrebroflexible12.555.73.11e+033.49Brokvarterer
2.37e+07https://www.airbnb.com/rooms/23729299299       1200120      Apartment2298Private room1  112TRUETRUEFrederiksbergflexible12.555.71.88e+033.27Brokvarterer
2.37e+07https://www.airbnb.com/rooms/23736875598       100      Apartment1996Private room1.5102FALSETRUEValbyflexible12.555.72.39e+033.38West
2.38e+07https://www.airbnb.com/rooms/23778413352       20149      Apartment3897Private room1  112FALSETRUEAmager Vestmoderate12.655.61.41e+033.15Amager
2.38e+07https://www.airbnb.com/rooms/23786991452       100      Apartment8298Private room1  112TRUETRUEFrederiksbergflexible12.555.71.81e+033.26Brokvarterer
2.38e+07https://www.airbnb.com/rooms/23804616299       100      Apartment1298Private room1  111TRUETRUEValbystrict_14_with_grace_period12.555.71.2e+03 3.08West
2.39e+07https://www.airbnb.com/rooms/23853113252       170100      Apartment3695Private room1  111FALSEFALSEAmager Veststrict_14_with_grace_period12.655.61.48e+033.17Amager
2.39e+07https://www.airbnb.com/rooms/23874162332       1045      Apartment1394Private room1.5112FALSETRUEValbymoderate12.555.71.51e+033.18West
2.39e+07https://www.airbnb.com/rooms/23890380352       250150      Apartment2298Private room1  112TRUETRUEVanlsemoderate12.555.71.46e+033.16Nordvest
2.39e+07https://www.airbnb.com/rooms/23907082518       100      Apartment2697Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.07e+033.32Brokvarterer
2.39e+07https://www.airbnb.com/rooms/23907955272       1225100      Apartment3698Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.555.71.71e+033.23Brokvarterer
2.39e+07https://www.airbnb.com/rooms/23910241306       1400      Apartment12595Private room1  121FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.26e+033.1 Brokvarterer
2.4e+07 https://www.airbnb.com/rooms/23950448498       11000      Apartment22100Private room1  112FALSETRUEAmager stflexible12.655.72.09e+033.32Amager
2.4e+07 https://www.airbnb.com/rooms/23988750173       10222      Apartment3093Private room1  111TRUETRUEFrederiksbergflexible12.555.71.58e+033.2 Brokvarterer
2.4e+07 https://www.airbnb.com/rooms/23994265498       1500      Apartment2097Private room1  112FALSETRUENrrebroflexible12.655.72.04e+033.31Brokvarterer
2.4e+07 https://www.airbnb.com/rooms/24030154452       1200200      Apartment6897Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.81e+033.45Brokvarterer
2.41e+07https://www.airbnb.com/rooms/24060593252       100      Condominium3298Private room1.5222TRUETRUEBrnshj-Husummoderate12.555.71.01e+033   West
2.41e+07https://www.airbnb.com/rooms/24073200591       1350      Apartment5996Private room1  101FALSETRUEVesterbro-Kongens Enghaveflexible12.655.62.4e+03 3.38Brokvarterer
2.41e+07https://www.airbnb.com/rooms/24073846352       100      Apartment3897Private room1  012FALSETRUEAmager Vestflexible12.655.71.41e+033.15Amager
2.41e+07https://www.airbnb.com/rooms/24074203352       100      Apartment3297Private room1  111FALSETRUEAmager stflexible12.655.71.41e+033.15Amager
2.41e+07https://www.airbnb.com/rooms/24075058299       100      Condominium1293Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.655.71.2e+03 3.08Brokvarterer
2.41e+07https://www.airbnb.com/rooms/24145034385       2300100      Apartment6498Private room1  254TRUETRUEBrnshj-Husumflexible12.555.71.84e+033.26West
2.42e+07https://www.airbnb.com/rooms/24194670498       100      Apartment10100Private room1  112FALSETRUENrrebroflexible12.555.71.99e+033.3 Brokvarterer
2.42e+07https://www.airbnb.com/rooms/24214597498       1500      Apartment11100Private room1  112FALSEFALSEFrederiksbergflexible12.555.72.04e+033.31Brokvarterer
2.42e+07https://www.airbnb.com/rooms/24218689412       275149      Apartment2998Private room1  112TRUETRUEIndre Bymoderate12.655.71.72e+033.24Center
2.42e+07https://www.airbnb.com/rooms/24225655352       10100      Apartment5496Private room1  113FALSEFALSEBispebjergflexible12.555.71.81e+033.26Nordvest
2.42e+07https://www.airbnb.com/rooms/24238721239       110050      Apartment1090Private room0.5112FALSEFALSENrrebroflexible12.555.71.26e+033.1 Brokvarterer
2.43e+07https://www.airbnb.com/rooms/24276151259       115060      Condominium12100Private room1  112FALSETRUENrrebroflexible12.555.71.43e+033.15Brokvarterer
2.43e+07https://www.airbnb.com/rooms/24280324352       100      Apartment12100Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.71.41e+033.15Brokvarterer
2.44e+07https://www.airbnb.com/rooms/24383331292       100      Apartment2291Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.17e+033.07Brokvarterer
2.44e+07https://www.airbnb.com/rooms/24423873412       100      Apartment1290Private room1  112TRUETRUEAmager Vestmoderate12.655.61.65e+033.22Amager
2.44e+07https://www.airbnb.com/rooms/24437935299       12500      Apartment6899Private room1  122TRUETRUEAmager stflexible12.655.71.45e+033.16Amager
2.44e+07https://www.airbnb.com/rooms/24443010392       11500      Apartment1098Private room1  112FALSETRUEsterbromoderate12.655.71.72e+033.24Brokvarterer
2.45e+07https://www.airbnb.com/rooms/24463943472       21000      Apartment60100Private room1.5112TRUETRUENrrebromoderate12.655.71.99e+033.3 Brokvarterer
2.45e+07https://www.airbnb.com/rooms/24463988279       100      Apartment1693Private room1  122FALSETRUEFrederiksbergflexible12.555.71.12e+033.05Brokvarterer
2.45e+07https://www.airbnb.com/rooms/24488606252       11200      Apartment1899Private room1  111FALSETRUEFrederiksbergmoderate12.555.71.13e+033.05Brokvarterer
2.45e+07https://www.airbnb.com/rooms/24495170651       2075      Other6299Private room1  132TRUETRUEAmager stmoderate12.655.72.6e+03 3.42Amager
2.45e+07https://www.airbnb.com/rooms/24503591598       1250250      Apartment1798Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.555.73.64e+033.56Brokvarterer
2.46e+07https://www.airbnb.com/rooms/24559287605       100      Apartment17100Private room1  112TRUETRUEsterbroflexible12.655.72.42e+033.38Brokvarterer
2.46e+07https://www.airbnb.com/rooms/24567043146       18050      Apartment13292Private room1  122FALSEFALSENrrebroflexible12.555.7864       2.94Brokvarterer
2.46e+07https://www.airbnb.com/rooms/24573443492       12000      Apartment1398Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.17e+033.34Brokvarterer
2.46e+07https://www.airbnb.com/rooms/24616521279       1300      Apartment2395Private room1  112FALSETRUEAmager stflexible12.655.71.15e+033.06Amager
2.47e+07https://www.airbnb.com/rooms/24653444498       10150      Apartment2099Private room1  111TRUEFALSEIndre Bystrict_14_with_grace_period12.655.72.59e+033.41Center
2.47e+07https://www.airbnb.com/rooms/24656698505       20186      Condominium10597Private room1  133TRUETRUEsterbroflexible12.655.72.02e+033.31Brokvarterer
2.47e+07https://www.airbnb.com/rooms/24660041312       100      Apartment2298Private room1  111FALSETRUENrrebroflexible12.655.71.25e+033.1 Brokvarterer
2.47e+07https://www.airbnb.com/rooms/24669603452       2275235      Condominium2498Private room1  123TRUEFALSEsterbromoderate12.655.72.08e+033.32Brokvarterer
2.47e+07https://www.airbnb.com/rooms/24746456591       100      Apartment5197Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.36e+033.37Brokvarterer
2.48e+07https://www.airbnb.com/rooms/24775429299       1150150      Apartment1196Private room1  112FALSETRUEAmager stmoderate12.655.71.95e+033.29Amager
2.48e+07https://www.airbnb.com/rooms/24776774452       10200      Apartment2296Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.61e+033.42Brokvarterer
2.48e+07https://www.airbnb.com/rooms/24799574299       11000      Apartment2493Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.3e+03 3.11Brokvarterer
2.49e+07https://www.airbnb.com/rooms/24913355452       1250200      Apartment2896Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.86e+033.46Brokvarterer
2.49e+07https://www.airbnb.com/rooms/24929917538       189112      Apartment1699Private room1  112TRUETRUEIndre Bymoderate12.655.72.69e+033.43Center
2.5e+07 https://www.airbnb.com/rooms/24973439252       100      House1393Private room0.5111FALSETRUEVanlseflexible12.555.71.01e+033   Nordvest
2.5e+07 https://www.airbnb.com/rooms/24990957352       100      Apartment22995Private room1  112FALSETRUEBrnshj-Husummoderate12.555.71.41e+033.15West
2.5e+07 https://www.airbnb.com/rooms/24998199399       14500      House1794Private room1  112FALSETRUEVanlsemoderate12.555.72.05e+033.31Nordvest
2.5e+07 https://www.airbnb.com/rooms/25038664751       1100400      Apartment1293Private room1  111FALSETRUEAmager Vestflexible12.655.74.7e+03 3.67Amager
2.51e+07https://www.airbnb.com/rooms/25113583299       1500      Apartment1397Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.25e+033.1 Brokvarterer
2.52e+07https://www.airbnb.com/rooms/25180496399       10200      House2397Private room2  234TRUETRUEValbymoderate12.555.72.4e+03 3.38West
2.52e+07https://www.airbnb.com/rooms/25196286332       100      Apartment7596Private room1  112FALSETRUEAmager Vestmoderate12.655.61.33e+033.12Amager
2.52e+07https://www.airbnb.com/rooms/25241611432       1600      Apartment6196Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.79e+033.25Brokvarterer
2.53e+07https://www.airbnb.com/rooms/25272377498       100      Apartment11100Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.99e+033.3 Amager
2.53e+07https://www.airbnb.com/rooms/25310752399       100      Other1596Private room1  122FALSETRUEValbyflexible12.555.71.6e+03 3.2 West
2.53e+07https://www.airbnb.com/rooms/25334142724       100      Apartment3199Private room1  112TRUETRUEAmager Vestflexible12.655.72.9e+03 3.46Amager
2.54e+07https://www.airbnb.com/rooms/25377352452       100      Apartment1597Private room1  111FALSETRUEValbyflexible12.555.71.81e+033.26West
2.54e+07https://www.airbnb.com/rooms/25410304996       4350200      Condominium11392Private room1  124FALSETRUEIndre Bystrict_14_with_grace_period12.655.74.33e+033.64Center
2.54e+07https://www.airbnb.com/rooms/25414560399       11500      Apartment1898Private room1  133TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.75e+033.24Brokvarterer
2.54e+07https://www.airbnb.com/rooms/25434051352       100      House2592Private room1  112FALSETRUEVanlseflexible12.555.71.41e+033.15Nordvest
2.54e+07https://www.airbnb.com/rooms/25436765299       1100200      Apartment2697Private room1  112TRUETRUENrrebroflexible12.655.72.1e+03 3.32Brokvarterer
2.55e+07https://www.airbnb.com/rooms/25450717319       12000      Apartment2598Private room1  112TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.48e+033.17Nordvest
2.55e+07https://www.airbnb.com/rooms/25453852518       100      Apartment5096Private room1  112FALSETRUEBrnshj-Husummoderate12.555.72.07e+033.32West
2.55e+07https://www.airbnb.com/rooms/25472279598       1050      Apartment2692Private room1  112TRUETRUEFrederiksbergflexible12.655.72.59e+033.41Brokvarterer
2.55e+07https://www.airbnb.com/rooms/25475287352       2100200      Apartment4492Private room1  113FALSEFALSEAmager Vestflexible12.655.61.51e+033.18Amager
2.55e+07https://www.airbnb.com/rooms/25476656551       10300      Other2498Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.63.4e+03 3.53Amager
2.55e+07https://www.airbnb.com/rooms/25509436498       100      House2394Private room1  112TRUETRUEValbymoderate12.555.71.99e+033.3 West
2.55e+07https://www.airbnb.com/rooms/25524405299       1300250      Condominium6598Private room1  112TRUETRUEsterbromoderate12.655.72.5e+03 3.4 Brokvarterer
2.56e+07https://www.airbnb.com/rooms/25595163352       11000      Apartment1896Private room1  122TRUETRUEsterbrostrict_14_with_grace_period12.655.71.51e+033.18Brokvarterer
2.56e+07https://www.airbnb.com/rooms/25601750485       10149      Apartment2294Private room1  012FALSETRUENrrebromoderate12.555.72.54e+033.4 Brokvarterer
2.58e+07https://www.airbnb.com/rooms/25764697638       100      Apartment11100Private room2  122FALSETRUEAmager Vestmoderate12.655.72.55e+033.41Amager
2.58e+07https://www.airbnb.com/rooms/25768380352       100      Apartment1298Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.41e+033.15Brokvarterer
2.58e+07https://www.airbnb.com/rooms/25795163399       11000      Apartment5999Private room1  112TRUETRUEFrederiksbergflexible12.555.71.7e+03 3.23Brokvarterer
2.58e+07https://www.airbnb.com/rooms/25795355352       13000      Apartment1496Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.71e+033.23Brokvarterer
2.58e+07https://www.airbnb.com/rooms/25839064797       1349100      Apartment1599Private room1  122FALSETRUEIndre Bymoderate12.655.73.94e+033.6 Center
2.59e+07https://www.airbnb.com/rooms/25851499279       14250      Apartment1497Private room1  112TRUETRUEIndre Byflexible12.655.71.54e+033.19Center
2.59e+07https://www.airbnb.com/rooms/25860958306       100      Apartment2791Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.22e+033.09Brokvarterer
2.59e+07https://www.airbnb.com/rooms/25888835199       100      Apartment1593Private room1  111FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.7796       2.9 West
2.59e+07https://www.airbnb.com/rooms/25901897352       100      Condominium13100Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.41e+033.15Brokvarterer
2.6e+07 https://www.airbnb.com/rooms/25974845399       100      Townhouse2995Private room1  112TRUETRUEAmager Vestmoderate12.655.61.6e+03 3.2 Amager
2.6e+07 https://www.airbnb.com/rooms/26015249498       11000      Apartment1398Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.72.09e+033.32Brokvarterer
2.61e+07https://www.airbnb.com/rooms/26058894319       1150175      Apartment4799Private room1  112TRUETRUEsterbromoderate12.655.72.13e+033.33Brokvarterer
2.61e+07https://www.airbnb.com/rooms/26090392711       100      House5092Private room1  244FALSETRUEAmager Vestmoderate12.655.62.84e+033.45Amager
2.61e+07https://www.airbnb.com/rooms/26091194452       100      Apartment4796Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.81e+033.26Brokvarterer
2.61e+07https://www.airbnb.com/rooms/26091466751       100      House1198Private room1  113FALSEFALSEValbystrict_14_with_grace_period12.555.73e+03       3.48West
2.61e+07https://www.airbnb.com/rooms/26116212551       11000      Apartment2498Private room1  101TRUETRUEAmager Vestmoderate12.655.72.3e+03 3.36Amager
2.61e+07https://www.airbnb.com/rooms/26116747299       100      Apartment1892Private room1  111FALSETRUEAmager Vestflexible12.655.71.2e+03 3.08Amager
2.61e+07https://www.airbnb.com/rooms/26127713452       100      Apartment3892Private room1  112FALSETRUENrrebroflexible12.555.71.81e+033.26Brokvarterer
2.62e+07https://www.airbnb.com/rooms/26219800498       100      Apartment7599Private room1  123TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer
2.63e+07https://www.airbnb.com/rooms/26287612352       100      Apartment2699Private room1  112TRUETRUEFrederiksbergmoderate12.655.71.41e+033.15Brokvarterer
2.63e+07https://www.airbnb.com/rooms/26301533299       100      Apartment1196Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.2e+03 3.08Center
2.63e+07https://www.airbnb.com/rooms/26341942452       21500      Apartment2399Private room1  012FALSETRUEFrederiksbergmoderate12.555.71.96e+033.29Brokvarterer
2.63e+07https://www.airbnb.com/rooms/26348659359       1112186      Apartment17100Private room1  112FALSETRUENrrebroflexible12.655.72.29e+033.36Brokvarterer
2.64e+07https://www.airbnb.com/rooms/26378192299       1100200      Apartment2195Private room1  111FALSETRUEIndre Byflexible12.655.72.1e+03 3.32Center
2.65e+07https://www.airbnb.com/rooms/26462213259       13000      Apartment1794Private room1  114FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.34e+033.13Brokvarterer
2.65e+07https://www.airbnb.com/rooms/26471013498       1300100      Other1397Private room2  346FALSETRUEBrnshj-Husummoderate12.555.72.69e+033.43West
2.65e+07https://www.airbnb.com/rooms/26522009279       11120      Apartment3393Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.23e+033.09Amager
2.65e+07https://www.airbnb.com/rooms/26528638452       20330      Apartment2793Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.61.81e+033.26Brokvarterer
2.66e+07https://www.airbnb.com/rooms/26580583299       1080      Apartment2698Private room1  112TRUETRUEAmager Vestflexible12.655.71.52e+033.18Amager
2.66e+07https://www.airbnb.com/rooms/266456481.2e+03 100      Apartment1098Private room1  224TRUETRUEFrederiksbergmoderate12.555.74.81e+033.68Brokvarterer
2.67e+07https://www.airbnb.com/rooms/26674573452       4250200      Apartment1897Private room1  122TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.62.06e+033.31Brokvarterer
2.67e+07https://www.airbnb.com/rooms/26699386897       1100100      Condominium1597Private room1.5144TRUETRUENrrebromoderate12.555.74.09e+033.61Brokvarterer
2.68e+07https://www.airbnb.com/rooms/26754985352       24000      Apartment3496Private room1  112TRUETRUEAmager Vestmoderate12.655.71.81e+033.26Amager
2.68e+07https://www.airbnb.com/rooms/26764365698       11500      Apartment11100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.94e+033.47Brokvarterer
2.68e+07https://www.airbnb.com/rooms/26775780485       22100      Apartment6499Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.15e+033.33Brokvarterer
2.69e+07https://www.airbnb.com/rooms/26861850751       100      Apartment1499Private room1  122FALSETRUEIndre Byflexible12.655.73e+03       3.48Center
2.69e+07https://www.airbnb.com/rooms/26920626399       1100200      House3199Private room1  112TRUETRUEVanlsemoderate12.555.72.5e+03 3.4 Nordvest
2.69e+07https://www.airbnb.com/rooms/26928875651       12500      Apartment3099Private room1  112TRUETRUEIndre Byflexible12.655.72.85e+033.46Center
2.7e+07 https://www.airbnb.com/rooms/27007041299       10200      Apartment51100Private room1  112TRUETRUEVanlseflexible12.555.72e+03       3.3 Nordvest
2.7e+07 https://www.airbnb.com/rooms/27038918598       2190125      Apartment21100Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.62.58e+033.41Brokvarterer
2.71e+07https://www.airbnb.com/rooms/27060073352       120050      Apartment1096Private room1  112FALSETRUENrrebromoderate12.655.71.81e+033.26Brokvarterer
2.71e+07https://www.airbnb.com/rooms/27073990498       11000      Apartment1298Private room1  122FALSETRUEAmager Vestflexible12.655.72.09e+033.32Amager
2.71e+07https://www.airbnb.com/rooms/27096271299       11000      Other1497Private room1.5111TRUETRUEVanlsemoderate12.555.71.3e+03 3.11Nordvest
2.71e+07https://www.airbnb.com/rooms/27117348339       1500      Apartment1891Private room1.5111FALSETRUEAmager Vestflexible12.655.61.41e+033.15Amager
2.71e+07https://www.airbnb.com/rooms/27130140419       2095      Apartment3391Private room1  122FALSEFALSENrrebromoderate12.555.71.68e+033.22Brokvarterer
2.72e+07https://www.airbnb.com/rooms/27157444299       100      Apartment1291Private room1  112FALSETRUEFrederiksbergflexible12.655.71.2e+03 3.08Brokvarterer
2.72e+07https://www.airbnb.com/rooms/27162207352       25090      Condominium4191Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.46e+033.16Brokvarterer
2.72e+07https://www.airbnb.com/rooms/27182932392       100      Apartment1096Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.57e+033.2 Amager
2.72e+07https://www.airbnb.com/rooms/27195803452       2300200      Apartment1196Private room1  134FALSETRUENrrebromoderate12.655.72.11e+033.32Brokvarterer
2.73e+07https://www.airbnb.com/rooms/27324748332       100      Apartment1699Private room1  113TRUEFALSEIndre Byflexible12.655.71.33e+033.12Center
2.73e+07https://www.airbnb.com/rooms/27349949452       2100100      House2298Private room1  122TRUETRUEBrnshj-Husumflexible12.555.71.91e+033.28West
2.74e+07https://www.airbnb.com/rooms/27376697352       1100125      Apartment5597Private room1  123FALSETRUEIndre Byflexible12.655.72.01e+033.3 Center
2.74e+07https://www.airbnb.com/rooms/27415047452       11500      Apartment2299Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.96e+033.29Brokvarterer
2.74e+07https://www.airbnb.com/rooms/27417747651       1150100      Apartment26100Private room1  112TRUETRUENrrebromoderate12.555.73.15e+033.5 Brokvarterer
2.74e+07https://www.airbnb.com/rooms/27429498923       2133326      Apartment6495Private room1  133FALSETRUEIndre Bymoderate12.655.73.82e+033.58Center
2.75e+07https://www.airbnb.com/rooms/27462902724       2172149      Apartment11996Private room1.5113FALSETRUENrrebroflexible12.655.73.07e+033.49Brokvarterer
2.75e+07https://www.airbnb.com/rooms/27477327399       10350      Apartment1795Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.63e+03       3.48Brokvarterer
2.75e+07https://www.airbnb.com/rooms/27504405492       215099      Apartment2493Private room1  114FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.12e+033.33Brokvarterer
2.75e+07https://www.airbnb.com/rooms/27539326312       1150100      Apartment7593Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.8e+03 3.25Brokvarterer
2.76e+07https://www.airbnb.com/rooms/27567537452       100      Apartment2297Private room1  112FALSETRUEAmager Vestflexible12.655.61.81e+033.26Amager
2.76e+07https://www.airbnb.com/rooms/27585955498       100      Apartment3599Private room1  112TRUETRUEsterbromoderate12.655.71.99e+033.3 Brokvarterer
2.77e+07https://www.airbnb.com/rooms/27673264797       100      Apartment1392Private room1  112FALSETRUEIndre Byflexible12.655.73.19e+033.5 Center
2.77e+07https://www.airbnb.com/rooms/27673730345       11250      Condominium2499Private room1  122TRUETRUEsterbromoderate12.655.71.5e+03 3.18Brokvarterer
2.77e+07https://www.airbnb.com/rooms/27689228724       2150100      Apartment12095Private room1.5112FALSETRUENrrebroflexible12.655.73.05e+033.48Brokvarterer
2.78e+07https://www.airbnb.com/rooms/27801239498       2150200      Apartment8996Private room1  224TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.14e+033.33Brokvarterer
2.78e+07https://www.airbnb.com/rooms/27827764319       115060      Townhouse1899Private room1  112TRUETRUEValbyflexible12.555.71.67e+033.22West
2.78e+07https://www.airbnb.com/rooms/27841489498       100      Apartment1290Private room1  112FALSETRUEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer
2.79e+07https://www.airbnb.com/rooms/27865214352       100      Condominium7797Private room1  111TRUETRUEsterbroflexible12.655.71.41e+033.15Brokvarterer
2.79e+07https://www.airbnb.com/rooms/27893640498       10200      House4198Private room1  114FALSETRUEAmager Vestflexible12.655.62.79e+033.45Amager
2.79e+07https://www.airbnb.com/rooms/27922276319       112050      Apartment2199Private room1  112FALSEFALSEsterbrostrict_14_with_grace_period12.655.71.6e+03 3.2 Brokvarterer
2.8e+07 https://www.airbnb.com/rooms/27955839372       150125      Apartment2195Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.04e+033.31Brokvarterer
2.8e+07 https://www.airbnb.com/rooms/28013076372       100      Apartment3998Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.49e+033.17Brokvarterer
2.8e+07 https://www.airbnb.com/rooms/28041836452       1100150      Apartment4498Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.51e+033.4 Brokvarterer
2.8e+07 https://www.airbnb.com/rooms/28042806399       100      Apartment12896Private room1  112TRUETRUEIndre Bymoderate12.655.71.6e+03 3.2 Center
2.81e+07https://www.airbnb.com/rooms/28057934452       10200      Apartment2099Private room1.5112TRUETRUEsterbromoderate12.655.72.61e+033.42Brokvarterer
2.81e+07https://www.airbnb.com/rooms/28133361751       2100200      Apartment8597Private room1  113TRUEFALSEAmager stmoderate12.655.73.1e+03 3.49Amager
2.82e+07https://www.airbnb.com/rooms/28158305452       1250250      Apartment2091Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.73.06e+033.49Brokvarterer
2.82e+07https://www.airbnb.com/rooms/28177829399       1100175      Apartment1293Private room1.5112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.4e+03 3.38Brokvarterer
2.82e+07https://www.airbnb.com/rooms/28182299279       15050      Apartment1096Private room1  112FALSEFALSEAmager stmoderate12.655.71.37e+033.14Amager
2.82e+07https://www.airbnb.com/rooms/28248912598       2200200      Apartment1494Private room1  122TRUETRUEBispebjergstrict_14_with_grace_period12.555.72.59e+033.41Nordvest
2.83e+07https://www.airbnb.com/rooms/28281614651       11500      Apartment1891Private room1  224TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.75e+033.44Brokvarterer
2.84e+07https://www.airbnb.com/rooms/28397812199       1140120      Apartment1096Private room1  112FALSETRUEBispebjergstrict_14_with_grace_period12.555.71.42e+033.15Nordvest
2.86e+07https://www.airbnb.com/rooms/28578399578       100      Apartment1198Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.31e+033.36Brokvarterer
2.86e+07https://www.airbnb.com/rooms/28621813299       1200160      Apartment3095Private room1  122TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.04e+033.31Brokvarterer
2.87e+07https://www.airbnb.com/rooms/28684881498       11000      Apartment1599Private room1  112TRUETRUEsterbroflexible12.655.72.09e+033.32Brokvarterer
2.87e+07https://www.airbnb.com/rooms/28691380399       21000      Apartment5597Private room1.5112TRUETRUENrrebromoderate12.655.71.7e+03 3.23Brokvarterer
2.88e+07https://www.airbnb.com/rooms/28794953392       100      Apartment1494Private room1  112FALSEFALSEAmager Vestflexible12.655.61.57e+033.2 Amager
2.88e+07https://www.airbnb.com/rooms/28798805478       1700      Apartment16100Private room1  112FALSETRUEBispebjergmoderate12.555.71.98e+033.3 Nordvest
2.88e+07https://www.airbnb.com/rooms/28803714199       1080      Apartment2993Private room1  122FALSETRUENrrebroflexible12.555.71.12e+033.05Brokvarterer
2.88e+07https://www.airbnb.com/rooms/28826719345       133247      Apartment2598Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.555.71.9e+03 3.28Brokvarterer
2.89e+07https://www.airbnb.com/rooms/28860049352       21100      Condominium1497Private room1  112TRUETRUEVanlsemoderate12.555.71.52e+033.18Nordvest
2.9e+07 https://www.airbnb.com/rooms/28984553498       100      Apartment1198Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer
2.9e+07 https://www.airbnb.com/rooms/28993535399       100      House4998Private room1  111TRUETRUEAmager Vestmoderate12.655.61.6e+03 3.2 Amager
2.9e+07 https://www.airbnb.com/rooms/28994811352       1200150      Apartment1893Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.655.62.21e+033.34Brokvarterer
2.9e+07 https://www.airbnb.com/rooms/29000870299       11000      Apartment2299Private room1  111TRUEFALSEAmager Veststrict_14_with_grace_period12.655.71.3e+03 3.11Amager
2.9e+07 https://www.airbnb.com/rooms/290045351.25e+0312500      Apartment1997Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.75.25e+033.72Center
2.9e+07 https://www.airbnb.com/rooms/29018351326       1075      Apartment10100Private room2  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.6e+03 3.21Brokvarterer
2.91e+07https://www.airbnb.com/rooms/29097401352       100      Apartment1398Private room1  112FALSETRUEAmager Vestflexible12.655.71.41e+033.15Amager
2.91e+07https://www.airbnb.com/rooms/29108565352       100      Condominium1599Private room1  111FALSETRUEsterbromoderate12.655.71.41e+033.15Brokvarterer
2.92e+07https://www.airbnb.com/rooms/29173710159       1100115      Apartment1198Private room1  111TRUETRUEValbymoderate12.555.71.2e+03 3.08West
2.92e+07https://www.airbnb.com/rooms/29176083299       1085      Apartment5790Private room1  112FALSETRUENrrebroflexible12.555.71.54e+033.19Brokvarterer
2.93e+07https://www.airbnb.com/rooms/29255888498       2120120      Townhouse2395Private room1  255FALSETRUEsterbromoderate12.655.72.11e+033.32Brokvarterer
2.93e+07https://www.airbnb.com/rooms/29273471219       100      Apartment1594Private room1  112FALSETRUEAmager Vestflexible12.655.6876       2.94Amager
2.93e+07https://www.airbnb.com/rooms/29324266618       1100150      Apartment2793Private room1  123FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.73.17e+033.5 Brokvarterer
2.93e+07https://www.airbnb.com/rooms/29348750452       1150130      Apartment11399Private room1.5112TRUEFALSEIndre Bymoderate12.655.72.48e+033.39Center
2.94e+07https://www.airbnb.com/rooms/29357285498       11000      Apartment1799Private room1  112TRUETRUEAmager Vestmoderate12.655.72.09e+033.32Amager
2.94e+07https://www.airbnb.com/rooms/29412484399       1500      Apartment1096Private room1  112TRUETRUENrrebroflexible12.555.71.65e+033.22Brokvarterer
2.94e+07https://www.airbnb.com/rooms/29448676498       100      Apartment1196Private room1  122FALSETRUEAmager Vestflexible12.655.71.99e+033.3 Amager
2.95e+07https://www.airbnb.com/rooms/29475254299       100      Apartment1298Private room1  112FALSETRUEBispebjergflexible12.555.71.2e+03 3.08Nordvest
2.95e+07https://www.airbnb.com/rooms/29505077399       12500      Apartment6092Private room1.5112FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.85e+033.27Center
2.95e+07https://www.airbnb.com/rooms/29528219412       1080      Apartment2899Private room1  112TRUETRUEAmager Vestmoderate12.655.71.97e+033.29Amager
2.96e+07https://www.airbnb.com/rooms/29584810299       100      Apartment12490Private room1  112FALSETRUEValbyflexible12.555.71.2e+03 3.08West
2.96e+07https://www.airbnb.com/rooms/29608528452       1050      Apartment10100Private room1  112FALSETRUENrrebroflexible12.655.72.01e+033.3 Brokvarterer
2.96e+07https://www.airbnb.com/rooms/29621032292       14050      Apartment10099Private room1  112TRUETRUENrrebroflexible12.655.71.41e+033.15Brokvarterer
2.96e+07https://www.airbnb.com/rooms/29627657399       1150150      Apartment6991Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.35e+033.37Brokvarterer
2.96e+07https://www.airbnb.com/rooms/29648464558       210050      Apartment21100Private room1  113TRUETRUEsterbrostrict_14_with_grace_period12.655.72.33e+033.37Brokvarterer
2.97e+07https://www.airbnb.com/rooms/29680613299       120095      Apartment8296Private room1  112TRUETRUEBispebjergflexible12.555.71.78e+033.25Nordvest
2.97e+07https://www.airbnb.com/rooms/29704590219       1150100      Apartment1996Private room1  112FALSETRUEValbyflexible12.555.71.43e+033.15West
2.97e+07https://www.airbnb.com/rooms/29732726279       1150150      Apartment2491Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.87e+033.27Brokvarterer
2.98e+07https://www.airbnb.com/rooms/29756997698       12500      Apartment1696Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.655.73.04e+033.48Brokvarterer
2.99e+07https://www.airbnb.com/rooms/29854096624       27550      Apartment1897Private room1  122TRUETRUEAmager Vestflexible12.655.62.57e+033.41Amager
2.99e+07https://www.airbnb.com/rooms/29897239498       21000      Apartment2499Private room1  112FALSETRUENrrebromoderate12.655.72.09e+033.32Brokvarterer
2.99e+07https://www.airbnb.com/rooms/29940606352       100      Apartment2698Private room1  111TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.41e+033.15Brokvarterer
3e+07       https://www.airbnb.com/rooms/29953897266       1050      Apartment1896Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.26e+033.1 Brokvarterer
3e+07       https://www.airbnb.com/rooms/29960791252       100      Apartment2297Private room1  111TRUETRUEValbyflexible12.555.71.01e+033   West
3.01e+07https://www.airbnb.com/rooms/30088108199       100      Apartment14100Private room2  122TRUETRUEVesterbro-Kongens Enghaveflexible12.555.6796       2.9 Brokvarterer
3.01e+07https://www.airbnb.com/rooms/30101131252       11000      Apartment5999Private room1  122TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.11e+033.04Nordvest
3.01e+07https://www.airbnb.com/rooms/30105029399       100      Apartment6690Private room1  111FALSETRUEIndre Bymoderate12.655.71.6e+03 3.2 Center
3.01e+07https://www.airbnb.com/rooms/30148649399       10100      Apartment5497Private room1  112TRUETRUEAmager Vestflexible12.655.72e+03       3.3 Amager
3.02e+07https://www.airbnb.com/rooms/30174695505       1224224      Apartment2099Private room1  112TRUETRUEIndre Bymoderate12.655.73.14e+033.5 Center
3.02e+07https://www.airbnb.com/rooms/30190432399       11000      Apartment1898Private room1  112TRUETRUEAmager stflexible12.655.71.7e+03 3.23Amager
3.03e+07https://www.airbnb.com/rooms/30283310352       12500      Apartment3799Private room1  112TRUETRUEAmager Vestmoderate12.655.61.66e+033.22Amager
3.03e+07https://www.airbnb.com/rooms/30333833199       100      Apartment2190Private room1.5112FALSETRUENrrebromoderate12.655.7796       2.9 Brokvarterer
3.03e+07https://www.airbnb.com/rooms/30336063419       10122      Apartment13100Private room1  112TRUETRUENrrebroflexible12.555.72.16e+033.34Brokvarterer
3.04e+07https://www.airbnb.com/rooms/30359755352       1100150      Apartment2198Private room1  233TRUETRUEFrederiksbergmoderate12.555.72.11e+033.32Brokvarterer
3.05e+07https://www.airbnb.com/rooms/30454450691       20100      Apartment2295Private room1  144FALSEFALSENrrebrostrict_14_with_grace_period12.655.72.76e+033.44Brokvarterer
3.07e+07https://www.airbnb.com/rooms/30674303312       20150      Apartment15799Private room1  123TRUETRUEBrnshj-Husumflexible12.555.71.25e+033.1 West
3.07e+07https://www.airbnb.com/rooms/30682423352       11750      Apartment2793Private room1  111FALSETRUEsterbrostrict_14_with_grace_period12.655.71.58e+033.2 Brokvarterer
3.07e+07https://www.airbnb.com/rooms/30704212359       100      Apartment2192Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.44e+033.16Brokvarterer
3.07e+07https://www.airbnb.com/rooms/30705669199       13089      Apartment1894Private room1.5112TRUEFALSEsterbroflexible12.655.71.18e+033.07Brokvarterer
3.07e+07https://www.airbnb.com/rooms/30727876399       115070      Apartment6397Private room1  112TRUETRUEBispebjergflexible12.555.72.03e+033.31Nordvest
3.07e+07https://www.airbnb.com/rooms/30731799206       12990      Apartment2299Private room1  112TRUEFALSEValbystrict_14_with_grace_period12.555.71.12e+033.05West
3.08e+07https://www.airbnb.com/rooms/30805923399       1150150      Apartment1397Private room1  112FALSETRUENrrebroflexible12.555.72.35e+033.37Brokvarterer
3.08e+07https://www.airbnb.com/rooms/30807109352       1700      Apartment2499Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.48e+033.17Brokvarterer
3.08e+07https://www.airbnb.com/rooms/30831468272       100      Apartment6795Private room1.5111FALSEFALSEBispebjergflexible12.555.71.09e+033.04Nordvest
3.1e+07 https://www.airbnb.com/rooms/31018394299       2200100      Apartment1999Private room1  112TRUETRUENrrebromoderate12.655.71.4e+03 3.14Brokvarterer
3.1e+07 https://www.airbnb.com/rooms/31047028153       11000      House4199Private room1  112TRUETRUEBrnshj-Husumflexible12.555.7712       2.85West
3.11e+07https://www.airbnb.com/rooms/31057476498       1090      Apartment10100Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.62.35e+033.37Amager
3.11e+07https://www.airbnb.com/rooms/31118495505       100      Apartment3994Private room1  112FALSETRUEFrederiksbergflexible12.555.72.02e+033.31Brokvarterer
3.12e+07https://www.airbnb.com/rooms/31248084219       11000      Apartment1094Private room1  112FALSETRUEVanlseflexible12.555.7976       2.99Nordvest
3.13e+07https://www.airbnb.com/rooms/31290153498       250120      Apartment1295Private room3.5113FALSETRUEIndre Byflexible12.655.72.04e+033.31Center
3.13e+07https://www.airbnb.com/rooms/31326896751       100      Apartment14100Private room1  111FALSETRUEIndre Byflexible12.655.73e+03       3.48Center
3.14e+07https://www.airbnb.com/rooms/31400072126       100      Apartment1494Private room1  111FALSETRUEValbymoderate12.555.7504       2.7 West
3.14e+07https://www.airbnb.com/rooms/31401376399       10100      Apartment4199Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.72e+03       3.3 Brokvarterer
3.14e+07https://www.airbnb.com/rooms/31410067698       12500      Apartment1599Private room1  112TRUETRUEIndre Byflexible12.655.73.04e+033.48Center
3.15e+07https://www.airbnb.com/rooms/31466813372       100      Other18100Private room1  112TRUETRUEValbyflexible12.555.71.49e+033.17West
3.15e+07https://www.airbnb.com/rooms/31488751598       100      Apartment1596Private room1  112FALSETRUEIndre Byflexible12.655.72.39e+033.38Center
3.15e+07https://www.airbnb.com/rooms/31528287392       100      Apartment1196Private room1  112TRUETRUEIndre Byflexible12.655.71.57e+033.2 Center
3.16e+07https://www.airbnb.com/rooms/31559772352       23000      Apartment4197Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.71e+033.23Center
3.16e+07https://www.airbnb.com/rooms/31579721299       2050      Apartment4192Private room1  133FALSETRUEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer
3.16e+07https://www.airbnb.com/rooms/31608294498       12500      Other2399Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.62.24e+033.35Amager
3.16e+07https://www.airbnb.com/rooms/31612774252       1500      Apartment1297Private room1  122TRUETRUEValbymoderate12.555.71.06e+033.02West
3.16e+07https://www.airbnb.com/rooms/31649106352       1150100      Apartment17100Private room1  112TRUETRUEAmager Vestmoderate12.655.61.96e+033.29Amager
3.17e+07https://www.airbnb.com/rooms/31682837325       1160170      Condominium27100Private room1  012TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.14e+033.33Brokvarterer
3.17e+07https://www.airbnb.com/rooms/31690769352       200      Condominium1595Private room1  101TRUETRUENrrebroflexible12.555.71.41e+033.15Brokvarterer
3.17e+07https://www.airbnb.com/rooms/31705502385       12000      Other2999Private room1  112TRUETRUEFrederiksbergflexible12.555.71.74e+033.24Brokvarterer
3.17e+07https://www.airbnb.com/rooms/31725838651       21000      Other3392Private room1.5112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.7e+03 3.43Brokvarterer
3.18e+07https://www.airbnb.com/rooms/31848826452       1150150      Apartment2198Private room1  123TRUETRUENrrebrostrict_14_with_grace_period12.655.72.56e+033.41Brokvarterer
3.19e+07https://www.airbnb.com/rooms/31892048352       150200      Apartment2799Private room1.5111TRUETRUEBispebjergmoderate12.555.72.26e+033.35Nordvest
3.19e+07https://www.airbnb.com/rooms/319189091e+03       2310800      Apartment1695Private room1  124FALSETRUEIndre Bymoderate12.655.74.32e+033.64Center
3.19e+07https://www.airbnb.com/rooms/31944425299       1800      Apartment2198Private room1  111TRUETRUEValbymoderate12.555.71.28e+033.11West
3.2e+07 https://www.airbnb.com/rooms/32036270598       1500      Apartment1595Private room1  112FALSEFALSEAmager stmoderate12.655.72.44e+033.39Amager
3.21e+07https://www.airbnb.com/rooms/32102028299       11000      Other3797Private room1  112TRUETRUEBispebjergflexible12.555.71.3e+03 3.11Nordvest
3.21e+07https://www.airbnb.com/rooms/32121881498       100      Apartment1398Private room1  112TRUETRUEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer
3.21e+07https://www.airbnb.com/rooms/32130320299       11000      Apartment22100Private room1  112TRUETRUEsterbroflexible12.655.71.3e+03 3.11Brokvarterer
3.22e+07https://www.airbnb.com/rooms/32234648312       100      Apartment1298Private room1  112TRUEFALSEFrederiksbergstrict_14_with_grace_period12.555.71.25e+033.1 Brokvarterer
3.22e+07https://www.airbnb.com/rooms/32245469492       250200      Apartment2692Private room1  112FALSEFALSEBispebjergmoderate12.555.72.02e+033.3 Nordvest
3.22e+07https://www.airbnb.com/rooms/32246800252       1150180      Apartment2598Private room1  112TRUETRUEBispebjergmoderate12.555.71.88e+033.27Nordvest
3.23e+07https://www.airbnb.com/rooms/32296918252       11000      Apartment3292Private room1  112FALSETRUEBispebjergmoderate12.555.71.11e+033.04Nordvest
3.24e+07https://www.airbnb.com/rooms/32350278352       1125125      Apartment3391Private room1  133FALSETRUEsterbroflexible12.655.72.03e+033.31Brokvarterer
3.24e+07https://www.airbnb.com/rooms/32439197339       1125100      Apartment1198Private room1  112TRUETRUEsterbroflexible12.655.71.88e+033.27Brokvarterer
3.25e+07https://www.airbnb.com/rooms/32467621252       1050      Apartment1195Private room1  112TRUETRUENrrebroflexible12.655.71.21e+033.08Brokvarterer
3.25e+07https://www.airbnb.com/rooms/32519952498       100      Apartment2096Private room1  112FALSETRUEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer
3.25e+07https://www.airbnb.com/rooms/32536891452       10100      Apartment12100Private room1  122TRUETRUENrrebroflexible12.555.72.21e+033.34Brokvarterer
3.27e+07https://www.airbnb.com/rooms/32707835252       1120150      Apartment1392Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.73e+033.24Brokvarterer
3.28e+07https://www.airbnb.com/rooms/32757110950       100      Apartment17100Private room1.5112TRUETRUEIndre Byflexible12.655.73.8e+03 3.58Center
3.28e+07https://www.airbnb.com/rooms/32788817452       100      House2698Private room0.5122TRUETRUEFrederiksbergflexible12.555.71.81e+033.26Brokvarterer
3.28e+07https://www.airbnb.com/rooms/32823591339       10150      Apartment1396Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.96e+033.29Brokvarterer
3.28e+07https://www.airbnb.com/rooms/32840963299       280100      Apartment4498Private room1  112FALSETRUENrrebromoderate12.555.71.28e+033.11Brokvarterer
3.29e+07https://www.airbnb.com/rooms/32914308498       11000      Apartment23100Private room1  112TRUETRUEAmager Vestflexible12.655.72.09e+033.32Amager
3.3e+07 https://www.airbnb.com/rooms/32983997399       2200150      Other1690Private room0.512FALSETRUEVanlseflexible12.555.71.8e+03 3.25Nordvest
3.31e+07https://www.airbnb.com/rooms/33074780598       2100150      Apartment3296Private room1  114TRUETRUEsterbromoderate12.655.72.49e+033.4 Brokvarterer
3.32e+07https://www.airbnb.com/rooms/33156740120       1450      Apartment2396Private room1  111TRUETRUEAmager stmoderate12.655.7525       2.72Amager
3.33e+07https://www.airbnb.com/rooms/33307277359       1400      Apartment3499Private room1  111TRUETRUEBispebjergmoderate12.555.71.48e+033.17Nordvest
3.33e+07https://www.airbnb.com/rooms/33307452326       100      Apartment10100Private room1  112TRUETRUEBispebjergflexible12.555.71.3e+03 3.12Nordvest
3.34e+07https://www.airbnb.com/rooms/33367615538       1950      Apartment2094Private room1  123FALSETRUEAmager ststrict_14_with_grace_period12.655.72.25e+033.35Amager
3.34e+07https://www.airbnb.com/rooms/33421604651       100      Apartment1592Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.6e+03 3.42Center
3.34e+07https://www.airbnb.com/rooms/33437837299       100      Apartment2796Private room1  112FALSETRUEAmager stflexible12.655.71.2e+03 3.08Amager
3.35e+07https://www.airbnb.com/rooms/33478438399       1250100      Apartment1193Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.25e+033.35Brokvarterer
3.35e+07https://www.airbnb.com/rooms/33484625751       2300250      Townhouse15100Private room1  223TRUETRUEsterbroflexible12.655.73.3e+03 3.52Brokvarterer
3.35e+07https://www.airbnb.com/rooms/33546967498       200      Apartment2198Private room1  112TRUEFALSEValbymoderate12.555.71.99e+033.3 West
3.36e+07https://www.airbnb.com/rooms/33570154226       1800      Apartment1791Private room1  111FALSETRUENrrebroflexible12.555.7984       2.99Brokvarterer
3.36e+07https://www.airbnb.com/rooms/33608501412       110090      House3890Private room1  124FALSETRUEBrnshj-Husummoderate12.555.72.11e+033.32West
3.36e+07https://www.airbnb.com/rooms/33649503551       100      Apartment43100Private room1  112TRUETRUEVanlseflexible12.555.72.2e+03 3.34Nordvest
3.37e+07https://www.airbnb.com/rooms/33650787372       1265300      Apartment1198Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.95e+033.47Brokvarterer
3.37e+07https://www.airbnb.com/rooms/33694187398       212075      Apartment2394Private room1  112FALSETRUEsterbromoderate12.655.71.71e+033.23Brokvarterer
3.37e+07https://www.airbnb.com/rooms/33713536252       100      Apartment12100Private room1  112TRUETRUENrrebroflexible12.555.71.01e+033   Brokvarterer
3.37e+07https://www.airbnb.com/rooms/33714241498       100      Apartment1597Private room1  012TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.99e+033.3 Brokvarterer
3.37e+07https://www.airbnb.com/rooms/33728619412       175149      Apartment2098Private room1  212TRUETRUEFrederiksbergmoderate12.555.72.32e+033.37Brokvarterer
3.38e+07https://www.airbnb.com/rooms/33754500498       21500      Apartment1291Private room1  112FALSEFALSEBispebjergflexible12.555.72.14e+033.33Nordvest
3.38e+07https://www.airbnb.com/rooms/33799001378       2150150      Apartment11100Private room1  122TRUETRUEValbyflexible12.555.71.66e+033.22West
3.39e+07https://www.airbnb.com/rooms/33851914299       1700      Apartment10100Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.71.27e+033.1 Brokvarterer
3.39e+07https://www.airbnb.com/rooms/33886110299       1100150      Apartment2896Private room1.5112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.9e+03 3.28Brokvarterer
3.39e+07https://www.airbnb.com/rooms/33901941399       1100200      Apartment1699Private room1  111FALSETRUEsterbroflexible12.655.72.5e+03 3.4 Brokvarterer
3.39e+07https://www.airbnb.com/rooms/33911511299       150100      Apartment2298Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.61.65e+033.22Brokvarterer
3.4e+07 https://www.airbnb.com/rooms/34012280491       1130170      Apartment1096Private room1  112TRUETRUEVanlsestrict_14_with_grace_period12.555.72.77e+033.44Nordvest
3.4e+07 https://www.airbnb.com/rooms/34021440398       20100      Apartment2798Private room1  104TRUETRUEFrederiksbergflexible12.555.71.59e+033.2 Brokvarterer
3.4e+07 https://www.airbnb.com/rooms/34037421352       1100100      House1694Private room1  112FALSETRUEValbymoderate12.555.71.91e+033.28West
3.41e+07https://www.airbnb.com/rooms/34055711272       100      Apartment2491Private room1  112FALSETRUENrrebromoderate12.655.71.09e+033.04Brokvarterer
3.41e+07https://www.airbnb.com/rooms/34133577797       127960      Apartment4691Private room1  134FALSETRUEIndre Byflexible12.655.73.71e+033.57Center
3.41e+07https://www.airbnb.com/rooms/34149047285       100      Apartment2890Private room1  112FALSETRUENrrebroflexible12.655.71.14e+033.06Brokvarterer
3.43e+07https://www.airbnb.com/rooms/34250490498       280150      Apartment2298Private room1  112TRUETRUEAmager Vestmoderate12.655.62.07e+033.32Amager
3.43e+07https://www.airbnb.com/rooms/34278670292       16060      Other52100Private room1  112TRUETRUEVanlseflexible12.555.71.47e+033.17Nordvest
3.43e+07https://www.airbnb.com/rooms/34281307299       1035      Apartment16100Private room1  112TRUETRUENrrebromoderate12.555.71.34e+033.13Brokvarterer
3.44e+07https://www.airbnb.com/rooms/34393437597       110050      Apartment1499Private room1  122TRUETRUEIndre Byflexible12.655.72.69e+033.43Center
3.44e+07https://www.airbnb.com/rooms/34426647498       100      Townhouse2698Private room1  112TRUETRUEAmager stflexible12.655.61.99e+033.3 Amager
3.44e+07https://www.airbnb.com/rooms/34440923551       1330      Other1895Private room1  112TRUETRUENrrebromoderate12.655.72.24e+033.35Brokvarterer
3.45e+07https://www.airbnb.com/rooms/34502695498       350100      Other2697Private room1  113TRUETRUEValbyflexible12.555.72.04e+033.31West
3.45e+07https://www.airbnb.com/rooms/34525854471       114050      Apartment1791Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.22e+033.35Center
3.46e+07https://www.airbnb.com/rooms/34582204485       100      House2795Private room1  012FALSEFALSEIndre Byflexible12.655.71.94e+033.29Center
3.46e+07https://www.airbnb.com/rooms/34626214598       1450100      Apartment2497Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.24e+033.51Center
3.47e+07https://www.airbnb.com/rooms/34679434372       1500      Apartment2396Private room1  112TRUETRUEBrnshj-Husumstrict_14_with_grace_period12.555.71.54e+033.19West
3.47e+07https://www.airbnb.com/rooms/34681260392       100      Other4692Private room1  244FALSETRUEAmager stflexible12.655.61.57e+033.2 Amager
3.47e+07https://www.airbnb.com/rooms/34695860286       160150      Other3598Private room1  022TRUETRUEBrnshj-Husumflexible12.555.71.8e+03 3.26West
3.47e+07https://www.airbnb.com/rooms/34696236412       100      Apartment8098Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.65e+033.22Brokvarterer
3.47e+07https://www.airbnb.com/rooms/34697921392       100      Apartment2093Private room1  112FALSETRUEAmager stflexible12.655.61.57e+033.2 Amager
3.47e+07https://www.airbnb.com/rooms/34713420498       1400      Apartment6097Private room1  112TRUETRUEFrederiksbergmoderate12.655.72.03e+033.31Brokvarterer
3.48e+07https://www.airbnb.com/rooms/34772721399       1050      Apartment1490Private room1  012FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.8e+03 3.25Brokvarterer
3.48e+07https://www.airbnb.com/rooms/34809039398       1100200      Apartment1799Private room1  112TRUETRUENrrebroflexible12.555.72.49e+033.4 Brokvarterer
3.48e+07https://www.airbnb.com/rooms/34835494299       150100      Apartment2097Private room1  112FALSETRUENrrebroflexible12.655.71.65e+033.22Brokvarterer
3.49e+07https://www.airbnb.com/rooms/34856242498       100      Apartment2098Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.99e+033.3 Brokvarterer
3.49e+07https://www.airbnb.com/rooms/34888013299       100      Apartment1591Private room1  111FALSETRUENrrebroflexible12.655.71.2e+03 3.08Brokvarterer
3.49e+07https://www.airbnb.com/rooms/34920043392       19999      Apartment4093Private room1  123FALSETRUEAmager stflexible12.655.72.06e+033.31Amager
3.49e+07https://www.airbnb.com/rooms/34937541597       100      House1798Private room1  122TRUETRUEAmager stflexible12.655.72.39e+033.38Amager
3.5e+07 https://www.airbnb.com/rooms/34971525319       150200      Other2197Private room1  112TRUETRUEVanlseflexible12.555.72.13e+033.33Nordvest
3.5e+07 https://www.airbnb.com/rooms/35032262352       1150300      Apartment1694Private room1  123FALSETRUENrrebroflexible12.555.72.76e+033.44Brokvarterer
3.5e+07 https://www.airbnb.com/rooms/35038891751       12500      Apartment10100Private room1  112FALSETRUEAmager stflexible12.655.73.25e+033.51Amager
3.51e+07https://www.airbnb.com/rooms/35071143571       11500      Apartment2997Private room1  012TRUETRUEIndre Bymoderate12.655.72.43e+033.39Center
3.52e+07https://www.airbnb.com/rooms/35215509551       11500      Apartment15100Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.35e+033.37Amager
3.52e+07https://www.airbnb.com/rooms/35239023451       100      Apartment1096Private room1  112TRUEFALSEFrederiksbergflexible12.655.71.8e+03 3.26Brokvarterer
3.53e+07https://www.airbnb.com/rooms/35297865551       20100      Apartment3894Private room1  113FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.2e+03 3.34Brokvarterer
3.53e+07https://www.airbnb.com/rooms/35300458352       1350      Apartment1999Private room1  112TRUETRUEAmager Vestflexible12.655.61.44e+033.16Amager
3.55e+07https://www.airbnb.com/rooms/35540010246       19535      Apartment1696Private room1  112TRUETRUEVanlsemoderate12.555.71.22e+033.09Nordvest
3.56e+07https://www.airbnb.com/rooms/35578830451       100      Apartment3792Private room1  112FALSETRUEAmager stflexible12.655.71.8e+03 3.26Amager
3.56e+07https://www.airbnb.com/rooms/356044131.5e+03 100      Apartment1796Private room1.5223FALSETRUEIndre Bymoderate12.655.76e+03       3.78Center
3.57e+07https://www.airbnb.com/rooms/35664005478       12500      Apartment2395Private room1  123FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.16e+033.33Center
3.57e+07https://www.airbnb.com/rooms/35693463325       100      Apartment3491Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.3e+03 3.11Brokvarterer
3.57e+07https://www.airbnb.com/rooms/35699272850       22000      Apartment5398Private room1  012TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.6e+03 3.56Center
3.57e+07https://www.airbnb.com/rooms/35722788398       11750      Apartment10100Private room1  112FALSEFALSENrrebroflexible12.555.71.77e+033.25Brokvarterer
3.57e+07https://www.airbnb.com/rooms/35728133219       1350      Apartment3091Private room1  111FALSETRUEAmager Vestmoderate12.655.7911       2.96Amager
3.58e+07https://www.airbnb.com/rooms/35765569485       198210      Apartment3496Private room1  111TRUETRUENrrebroflexible12.655.72.88e+033.46Brokvarterer
3.58e+07https://www.airbnb.com/rooms/35767935498       20200      Apartment2594Private room1  114FALSETRUEsterbrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer
3.58e+07https://www.airbnb.com/rooms/35780038451       1050      Apartment2598Private room1  111TRUEFALSENrrebroflexible12.655.72e+03       3.3 Brokvarterer
3.58e+07https://www.airbnb.com/rooms/35786920478       100      Apartment2295Private room1  112FALSETRUEFrederiksbergflexible12.555.71.91e+033.28Brokvarterer
3.58e+07https://www.airbnb.com/rooms/35839191392       1100100      Apartment1997Private room1  112TRUETRUEIndre Byflexible12.655.72.07e+033.32Center
3.59e+07https://www.airbnb.com/rooms/35868440246       1100100      Apartment1693Private room1  111FALSETRUEFrederiksbergflexible12.555.71.48e+033.17Brokvarterer
3.59e+07https://www.airbnb.com/rooms/35930602498       1150175      Apartment2099Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.84e+033.45Brokvarterer
3.59e+07https://www.airbnb.com/rooms/35937731451       100      Apartment1296Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.8e+03 3.26Brokvarterer
3.6e+07 https://www.airbnb.com/rooms/35967671598       2200300      Apartment2296Private room1  123TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.59e+033.41Brokvarterer
3.6e+07 https://www.airbnb.com/rooms/35992981319       1500      Apartment1297Private room1  112TRUETRUEValbyflexible12.555.71.33e+033.12West
3.6e+07 https://www.airbnb.com/rooms/36011736392       1250150      House1599Private room1  112FALSEFALSEAmager ststrict_14_with_grace_period12.655.72.42e+033.38Amager
3.6e+07 https://www.airbnb.com/rooms/36013912950       100      Apartment3099Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.8e+03 3.58Center
3.6e+07 https://www.airbnb.com/rooms/36013985398       11000      Apartment2097Private room1  112FALSETRUEAmager Vestflexible12.655.61.69e+033.23Amager
3.6e+07 https://www.airbnb.com/rooms/36029772392       1250150      House1898Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.62.42e+033.38Amager
3.61e+07https://www.airbnb.com/rooms/36058472398       1330      Apartment1596Private room1  132TRUETRUEAmager stflexible12.655.71.62e+033.21Amager
3.61e+07https://www.airbnb.com/rooms/36124619398       100      Apartment1593Private room1  112FALSETRUEBispebjergflexible12.555.71.59e+033.2 Nordvest
3.61e+07https://www.airbnb.com/rooms/36128301698       11000      Apartment1696Private room1  112TRUETRUEIndre Byflexible12.655.72.89e+033.46Center
3.62e+07https://www.airbnb.com/rooms/36163852286       1250100      Apartment1292Private room1  134FALSEFALSEVesterbro-Kongens Enghavemoderate12.555.61.79e+033.25Brokvarterer
3.62e+07https://www.airbnb.com/rooms/36221410319       100      Apartment1894Private room1.5344FALSETRUEFrederiksbergflexible12.555.71.28e+033.11Brokvarterer
3.62e+07https://www.airbnb.com/rooms/36221729299       1500      Apartment11100Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.25e+033.1 Brokvarterer
3.62e+07https://www.airbnb.com/rooms/36226802498       250200      Apartment1698Private room1  112TRUETRUEValbymoderate12.555.72.04e+033.31West
3.63e+07https://www.airbnb.com/rooms/36269850797       20100      Apartment1597Private room1  112FALSETRUEIndre Bymoderate12.655.73.19e+033.5 Center
3.63e+07https://www.airbnb.com/rooms/36278095299       1100100      Apartment10100Private room1  112TRUETRUEVanlsemoderate12.555.71.7e+03 3.23Nordvest
3.63e+07https://www.airbnb.com/rooms/36284753698       11500      Apartment12100Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.94e+033.47Brokvarterer
3.63e+07https://www.airbnb.com/rooms/36297264325       100      Apartment1994Private room1  111FALSEFALSEBispebjergflexible12.555.71.3e+03 3.11Nordvest
3.63e+07https://www.airbnb.com/rooms/36332656432       1100100      Apartment19100Private room1  112TRUETRUEAmager stflexible12.655.72.23e+033.35Amager
3.64e+07https://www.airbnb.com/rooms/36436230399       100      Apartment2695Private room1  111FALSETRUEsterbromoderate12.655.71.6e+03 3.2 Brokvarterer
3.65e+07https://www.airbnb.com/rooms/36512357398       1200150      Townhouse1096Private room1  112TRUEFALSEAmager Veststrict_14_with_grace_period12.655.62.39e+033.38Amager
3.66e+07https://www.airbnb.com/rooms/36593975498       11490      Apartment3791Private room1  133FALSETRUENrrebrostrict_14_with_grace_period12.655.72.14e+033.33Brokvarterer
3.67e+07https://www.airbnb.com/rooms/36664680438       110090      Apartment27100Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.21e+033.34Brokvarterer
3.68e+07https://www.airbnb.com/rooms/36787685219       10100      Apartment2093Private room1  121FALSETRUENrrebrostrict_14_with_grace_period12.655.71.28e+033.11Brokvarterer
3.68e+07https://www.airbnb.com/rooms/36796314419       10100      Apartment4299Private room1  112TRUETRUEsterbromoderate12.655.72.08e+033.32Brokvarterer
3.69e+07https://www.airbnb.com/rooms/36855658498       2100175      Apartment1497Private room1  112FALSETRUEAmager stmoderate12.655.72.09e+033.32Amager
3.69e+07https://www.airbnb.com/rooms/36871686299       10100      Apartment3792Private room1  121FALSETRUENrrebrostrict_14_with_grace_period12.655.71.6e+03 3.2 Brokvarterer
3.69e+07https://www.airbnb.com/rooms/36899429299       100      Other2096Private room1  111TRUETRUEVanlseflexible12.555.71.2e+03 3.08Nordvest
3.7e+07 https://www.airbnb.com/rooms/36954363498       12000      Apartment1497Private room1  122FALSETRUEAmager Veststrict_14_with_grace_period12.655.72.19e+033.34Amager
3.7e+07 https://www.airbnb.com/rooms/36999393372       1500      Apartment1599Private room1  112TRUETRUEFrederiksbergflexible12.555.71.54e+033.19Brokvarterer
3.7e+07 https://www.airbnb.com/rooms/37003888597       1060      Apartment1192Private room1.5112FALSEFALSEFrederiksbergflexible12.555.72.63e+033.42Brokvarterer
3.7e+07 https://www.airbnb.com/rooms/37040196399       100      Apartment16100Private room1  112FALSETRUEVanlseflexible12.555.71.6e+03 3.2 Nordvest
3.71e+07https://www.airbnb.com/rooms/37112170478       100      House1496Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.61.91e+033.28Brokvarterer
3.71e+07https://www.airbnb.com/rooms/37142589252       2300100      Apartment13100Private room1  112TRUETRUENrrebroflexible12.655.71.31e+033.12Brokvarterer
3.72e+07https://www.airbnb.com/rooms/37163387485       110075      Other2896Private room1  012FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.72.34e+033.37West
3.73e+07https://www.airbnb.com/rooms/37288225418       200      Apartment3399Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.71.67e+033.22Brokvarterer
3.74e+07https://www.airbnb.com/rooms/37378110213       1250100      Apartment2497Private room1.5112TRUEFALSEIndre Bystrict_14_with_grace_period12.655.71.5e+03 3.18Center
3.74e+07https://www.airbnb.com/rooms/37394076478       12000      Apartment25100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.11e+033.32Brokvarterer
3.75e+07https://www.airbnb.com/rooms/37477332578       12000      Apartment2498Private room1  112TRUETRUEIndre Bymoderate12.655.72.51e+033.4 Center
3.75e+07https://www.airbnb.com/rooms/37533392312       20250      Apartment19100Private room1  102FALSETRUEValbymoderate12.555.71.25e+033.1 West
3.76e+07https://www.airbnb.com/rooms/37576720392       100      Apartment2497Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.57e+033.2 Brokvarterer
3.76e+07https://www.airbnb.com/rooms/37583521750       12500      Apartment1494Private room1  112FALSETRUENrrebroflexible12.655.73.25e+033.51Brokvarterer
3.76e+07https://www.airbnb.com/rooms/376122121e+03       20200      Apartment3799Private room1  224TRUETRUEVesterbro-Kongens Enghaveflexible12.655.74.01e+033.6 Brokvarterer
3.76e+07https://www.airbnb.com/rooms/37612308498       100      House5499Private room1  112TRUETRUEAmager Vestflexible12.655.61.99e+033.3 Amager
3.77e+07https://www.airbnb.com/rooms/37700008358       11000      Condominium1194Private room1.5112FALSETRUEAmager Vestflexible12.655.61.53e+033.19Amager
3.77e+07https://www.airbnb.com/rooms/37741274651       100      Apartment12100Private room1  102TRUETRUEIndre Bymoderate12.655.72.6e+03 3.42Center
3.77e+07https://www.airbnb.com/rooms/37747206750       13000      Apartment22100Private room1  112TRUETRUEIndre Bymoderate12.655.73.3e+03 3.52Center
3.78e+07https://www.airbnb.com/rooms/37777669498       100      Apartment2394Private room1  112FALSEFALSEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer
3.78e+07https://www.airbnb.com/rooms/37787726246       1439250      Apartment1094Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.62.42e+033.38Brokvarterer
3.79e+07https://www.airbnb.com/rooms/37858655698       1500      Apartment10100Private room1.5112TRUETRUEIndre Byflexible12.655.72.84e+033.45Center
3.79e+07https://www.airbnb.com/rooms/37869162292       2149149      Apartment5793Private room1  112FALSETRUENrrebromoderate12.655.71.32e+033.12Brokvarterer
3.79e+07https://www.airbnb.com/rooms/37903754452       110040      Apartment1398Private room1  112FALSETRUEAmager stflexible12.655.72.07e+033.32Amager
3.8e+07 https://www.airbnb.com/rooms/37960442498       12500      Apartment14100Private room1  112TRUETRUEAmager Vestmoderate12.655.72.24e+033.35Amager
3.8e+07 https://www.airbnb.com/rooms/38016977551       100      Apartment20100Private room1  002TRUETRUEsterbromoderate12.655.72.2e+03 3.34Brokvarterer
3.8e+07 https://www.airbnb.com/rooms/38018437299       100      Apartment1193Private room1  112FALSETRUEsterbroflexible12.655.71.2e+03 3.08Brokvarterer
3.8e+07 https://www.airbnb.com/rooms/38031871378       1390      Apartment2494Private room1  112FALSETRUEAmager Vestflexible12.655.61.55e+033.19Amager
3.8e+07 https://www.airbnb.com/rooms/38031878352       17550      House2498Private room1.5112TRUETRUEBispebjergflexible12.555.71.68e+033.23Nordvest
3.82e+07https://www.airbnb.com/rooms/38189065299       2100185      Apartment1892Private room1  112FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.3e+03 3.11Nordvest
3.82e+07https://www.airbnb.com/rooms/38245859226       137149      Apartment2695Private room1  112TRUETRUEFrederiksbergflexible12.555.71.54e+033.19Brokvarterer
3.83e+07https://www.airbnb.com/rooms/38281615597       100      Apartment2999Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.39e+033.38Brokvarterer
3.83e+07https://www.airbnb.com/rooms/38337710398       1150100      Other1297Private room1  122FALSETRUEsterbrostrict_14_with_grace_period12.655.72.14e+033.33Brokvarterer
3.84e+07https://www.airbnb.com/rooms/383535711e+03       11000      Apartment1096Private room1.5112TRUETRUENrrebroflexible12.655.74.11e+033.61Brokvarterer
3.84e+07https://www.airbnb.com/rooms/38428971252       1400      Apartment1198Private room1  012TRUEFALSEValbymoderate12.555.71.05e+033.02West
3.84e+07https://www.airbnb.com/rooms/38445233252       11500      Apartment19100Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.16e+033.06Brokvarterer
3.85e+07https://www.airbnb.com/rooms/38515128498       11990      Apartment1597Private room1  112TRUEFALSEVanlsemoderate12.555.72.19e+033.34Nordvest
3.86e+07https://www.airbnb.com/rooms/38578757452       100      Apartment2395Private room1  112FALSETRUEIndre Byflexible12.655.71.81e+033.26Center
3.87e+07https://www.airbnb.com/rooms/386790921.13e+03100      Apartment1698Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.74.52e+033.65Brokvarterer
3.87e+07https://www.airbnb.com/rooms/38690307259       1050      House1496Private room2  122TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.24e+033.09Brokvarterer
3.88e+07https://www.airbnb.com/rooms/38844661352       100      Apartment2095Private room1  111FALSETRUEFrederiksbergflexible12.555.71.41e+033.15Brokvarterer
3.89e+07https://www.airbnb.com/rooms/38893757498       12000      Apartment1498Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.72.19e+033.34Amager
3.9e+07 https://www.airbnb.com/rooms/38951625452       2200100      Apartment13100Private room1  112FALSETRUENrrebromoderate12.655.72.01e+033.3 Brokvarterer
3.9e+07 https://www.airbnb.com/rooms/38997727803       100      Condominium1697Private room2  012TRUEFALSEIndre Bymoderate12.655.73.21e+033.51Center
3.9e+07 https://www.airbnb.com/rooms/39020206399       2150100      Apartment2098Private room1  103TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.75e+033.24Brokvarterer
3.9e+07 https://www.airbnb.com/rooms/39037766319       1500      Condominium1098Private room1  112TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.33e+033.12Brokvarterer
3.9e+07 https://www.airbnb.com/rooms/39048376452       20250      Apartment26100Private room1  112TRUETRUEValbymoderate12.555.71.81e+033.26West
3.91e+07https://www.airbnb.com/rooms/39097184419       12500      Other1094Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.93e+033.28Brokvarterer
3.91e+07https://www.airbnb.com/rooms/39144398272       120075      Apartment1198Private room1  112TRUETRUEBispebjergflexible12.555.71.59e+033.2 Nordvest
3.92e+07https://www.airbnb.com/rooms/39183821352       12000      Other1597Private room1  122TRUETRUENrrebrostrict_14_with_grace_period12.655.71.61e+033.21Brokvarterer
3.92e+07https://www.airbnb.com/rooms/39219620252       210050      Apartment1096Private room1  223TRUETRUEValbystrict_14_with_grace_period12.555.61.11e+033.04West
3.93e+07https://www.airbnb.com/rooms/39313935697       11500      Apartment2799Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.94e+033.47Brokvarterer
3.95e+07https://www.airbnb.com/rooms/39497945299       10200      Apartment2399Private room1  112TRUETRUENrrebroflexible12.555.72e+03       3.3 Brokvarterer
3.95e+07https://www.airbnb.com/rooms/39504833299       1150100      Other1892Private room1  103FALSETRUEsterbrostrict_14_with_grace_period12.655.71.75e+033.24Brokvarterer
3.95e+07https://www.airbnb.com/rooms/39517646299       100      Apartment10100Private room1  112TRUETRUEAmager Vestflexible12.655.61.2e+03 3.08Amager
3.96e+07https://www.airbnb.com/rooms/39644559299       2375125      House1397Private room1  124TRUETRUEFrederiksbergmoderate12.555.71.57e+033.2 Brokvarterer
3.97e+07https://www.airbnb.com/rooms/397193531e+03       2400200      Apartment1297Private room1  122TRUETRUEIndre Bystrict_14_with_grace_period12.655.74.41e+033.64Center
3.98e+07https://www.airbnb.com/rooms/39773379199       170100      Apartment2199Private room1  112TRUETRUEAmager stmoderate12.655.71.27e+033.1 Amager
3.99e+07https://www.airbnb.com/rooms/39885777212       17550      Apartment1298Private room1  112FALSETRUEsterbroflexible12.655.71.12e+033.05Brokvarterer
4e+07       https://www.airbnb.com/rooms/39989250352       237575      House1998Private room1  123TRUETRUEFrederiksbergflexible12.555.71.78e+033.25Brokvarterer
4e+07       https://www.airbnb.com/rooms/40032118312       17585      Apartment1497Private room1  112TRUETRUEBispebjergflexible12.555.71.66e+033.22Nordvest
4.01e+07https://www.airbnb.com/rooms/40081875252       16080      Apartment3697Private room1  111TRUETRUENrrebromoderate12.655.71.39e+033.14Brokvarterer
4.02e+07https://www.airbnb.com/rooms/40247003398       280150      Apartment3595Private room1  122TRUETRUENrrebromoderate12.655.71.67e+033.22Brokvarterer
4.02e+07https://www.airbnb.com/rooms/40247677597       280150      Apartment3197Private room1  112TRUETRUENrrebromoderate12.655.72.47e+033.39Brokvarterer
4.03e+07https://www.airbnb.com/rooms/40338902299       13000      Apartment1293Private room1  112FALSETRUEAmager stmoderate12.655.61.5e+03 3.17Amager
4.05e+07https://www.airbnb.com/rooms/40522266252       13000      Apartment1090Private room1  112FALSETRUEAmager stflexible12.655.61.31e+033.12Amager
4.05e+07https://www.airbnb.com/rooms/40527430299       250100      Townhouse1398Private room1  123TRUETRUEAmager Vestmoderate12.655.61.25e+033.1 Amager
4.07e+07https://www.airbnb.com/rooms/40715663352       11500      Other2096Private room2  113TRUETRUEsterbrostrict_14_with_grace_period12.655.71.56e+033.19Brokvarterer
4.12e+07https://www.airbnb.com/rooms/41161863352       368100      Apartment1090Private room0.5134FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.48e+033.17Amager
4.13e+07https://www.airbnb.com/rooms/41260940551       100      Apartment1394Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.2e+03 3.34Brokvarterer
4.18e+07https://www.airbnb.com/rooms/41848710252       100      Apartment1295Private room1  111FALSETRUENrrebromoderate12.655.71.01e+033   Brokvarterer
4.19e+07https://www.airbnb.com/rooms/41850840226       135170      Other2198Private room1  113TRUETRUEAmager Veststrict_14_with_grace_period12.655.61.62e+033.21Amager
# Generate a prediction for each row
model_predictions_log_CI <- predict(final_model, newdata = listings_predict_log, interval = "confidence")
model_predictions_log_CI
##           fit      lwr      upr
## 1    3.294419 3.282118 3.306721
## 2    3.442124 3.428301 3.455947
## 3    3.309985 3.298734 3.321237
## 4    3.302100 3.290525 3.313676
## 5    3.296983 3.271000 3.322967
## 6    3.308085 3.295058 3.321113
## 7    3.295042 3.283589 3.306495
## 8    3.247849 3.239905 3.255792
## 9    3.261068 3.239868 3.282268
## 10   3.244409 3.236222 3.252595
## 11   3.351540 3.342404 3.360675
## 12   3.335701 3.291404 3.379999
## 13   3.295472 3.267965 3.322980
## 14   3.310181 3.296026 3.324335
## 15   3.335905 3.318811 3.353000
## 16   3.276414 3.269749 3.283079
## 17   3.299785 3.291106 3.308464
## 18   3.393304 3.383813 3.402795
## 19   3.355949 3.340325 3.371572
## 20   3.314468 3.305977 3.322959
## 21   3.358389 3.341385 3.375392
## 22   3.303995 3.295936 3.312054
## 23         NA       NA       NA
## 24   3.190678 3.182515 3.198841
## 25   3.316773 3.304469 3.329076
## 26   3.362145 3.353573 3.370718
## 27   3.317248 3.307999 3.326498
## 28   3.234957 3.226252 3.243661
## 29   3.463621 3.452737 3.474505
## 30   3.176837 3.163111 3.190563
## 31   3.181380 3.173740 3.189019
## 32   3.455950 3.434452 3.477449
## 33   3.339159 3.331191 3.347128
## 34   3.377982 3.364499 3.391465
## 35   3.353493 3.339584 3.367403
## 36   3.328447 3.318437 3.338458
## 37   3.335905 3.320261 3.351550
## 38   3.301462 3.285997 3.316926
## 39   3.293360 3.286384 3.300335
## 40   3.248412 3.241796 3.255029
## 41   3.288165 3.266245 3.310084
## 42   3.437723 3.425298 3.450149
## 43   3.312646 3.304251 3.321041
## 44   3.308898 3.289432 3.328364
## 45   3.360447 3.345232 3.375662
## 46   3.462066 3.452525 3.471607
## 47   3.245292 3.237560 3.253024
## 48   3.399993 3.389579 3.410408
## 49   3.258870 3.248067 3.269674
## 50   3.236246 3.219040 3.253451
## 51   3.242382 3.225398 3.259366
## 52   3.251292 3.241439 3.261145
## 53   3.303878 3.286582 3.321173
## 54   3.265287 3.254194 3.276379
## 55   3.351297 3.333015 3.369579
## 56   3.294637 3.282467 3.306808
## 57   3.327599 3.319391 3.335807
## 58   3.333214 3.323819 3.342608
## 59   3.287041 3.278536 3.295546
## 60   3.426992 3.412512 3.441472
## 61   3.153871 3.140640 3.167102
## 62   3.333977 3.323551 3.344402
## 63   3.323274 3.315119 3.331428
## 64   3.298999 3.290959 3.307038
## 65   3.337977 3.330030 3.345923
## 66   3.230906 3.217282 3.244530
## 67   3.271425 3.257414 3.285435
## 68   3.482468 3.468342 3.496593
## 69   3.413487 3.405173 3.421800
## 70   3.302378 3.293541 3.311214
## 71   3.246562 3.239460 3.253663
## 72   3.294936 3.287675 3.302197
## 73   3.380996 3.368079 3.393914
## 74   3.271301 3.264832 3.277769
## 75   3.277586 3.260763 3.294408
## 76   3.325477 3.312105 3.338849
## 77   3.266283 3.259906 3.272659
## 78   3.289569 3.281101 3.298037
## 79   3.424917 3.413677 3.436157
## 80   3.126728 3.115326 3.138131
## 81   3.415891 3.406364 3.425419
## 82   3.391221 3.378596 3.403846
## 83   3.285721 3.278971 3.292471
## 84   3.357307 3.333931 3.380683
## 85   3.237756 3.230767 3.244745
## 86   3.208466 3.200523 3.216408
## 87   3.495748 3.468047 3.523448
## 88   3.330988 3.322057 3.339919
## 89   3.219204 3.211363 3.227044
## 90   3.351400 3.336957 3.365842
## 91   3.250607 3.241313 3.259901
## 92   3.276985 3.267974 3.285995
## 93   3.276321 3.267313 3.285328
## 94   3.161928 3.151469 3.172388
## 95   3.249366 3.232225 3.266508
## 96   3.274529 3.267680 3.281378
## 97   3.524849 3.512658 3.537040
## 98   3.214074 3.204631 3.223517
## 99   3.284138 3.275660 3.292617
## 100  3.334977 3.323836 3.346118
## 101  3.278577 3.271754 3.285400
## 102  3.226828 3.212199 3.241457
## 103  3.275911 3.264700 3.287123
## 104  3.438458 3.419703 3.457212
## 105  3.286009 3.279273 3.292744
## 106  3.173458 3.162066 3.184849
## 107  3.246933 3.238790 3.255075
## 108  3.424353 3.416010 3.432696
## 109  3.245339 3.236454 3.254225
## 110  3.267252 3.260890 3.273615
## 111  3.317683 3.310130 3.325237
## 112  3.265068 3.251703 3.278434
## 113  3.313434 3.304450 3.322419
## 114  3.278445 3.269093 3.287796
## 115  3.278380 3.271448 3.285313
## 116  3.274369 3.267870 3.280868
## 117  3.262790 3.252050 3.273531
## 118  3.269649 3.263208 3.276090
## 119  3.506156 3.475790 3.536523
## 120  3.457547 3.449060 3.466033
## 121  3.284516 3.274546 3.294487
## 122  3.281294 3.273260 3.289327
## 123  3.275030 3.267257 3.282802
## 124  3.331329 3.322417 3.340241
## 125  3.353853 3.330637 3.377069
## 126  3.335440 3.326345 3.344536
## 127  3.229627 3.222965 3.236289
## 128  3.221865 3.209215 3.234516
## 129  3.100683 3.089185 3.112180
## 130  3.309775 3.295290 3.324259
## 131  3.310377 3.302349 3.318405
## 132  3.212206 3.197415 3.226997
## 133  3.270589 3.262440 3.278738
## 134  3.279074 3.268223 3.289925
## 135  3.404191 3.395801 3.412580
## 136  3.158508 3.144623 3.172392
## 137  3.185700 3.172501 3.198899
## 138  3.372034 3.364136 3.379931
## 139  3.294750 3.284436 3.305064
## 140  3.338467 3.330142 3.346792
## 141  3.244545 3.238337 3.250753
## 142  3.289354 3.277854 3.300854
## 143  3.196860 3.187719 3.206000
## 144  3.380032 3.364437 3.395626
## 145  3.126730 3.117727 3.135733
## 146  3.286500 3.275356 3.297645
## 147  3.439694 3.424292 3.455096
## 148  3.270830 3.255608 3.286052
## 149  3.281278 3.274440 3.288116
## 150  3.272941 3.257169 3.288712
## 151  3.250205 3.243161 3.257249
## 152  3.403328 3.395215 3.411440
## 153  3.207003 3.190561 3.223445
## 154  3.152454 3.139343 3.165565
## 155  3.386909 3.377392 3.396427
## 156  3.244321 3.238230 3.250412
## 157  3.308143 3.300286 3.316001
## 158  3.423714 3.414884 3.432545
## 159  3.296725 3.280791 3.312658
## 160  3.409970 3.392009 3.427931
## 161  3.289141 3.282377 3.295905
## 162  3.253072 3.242766 3.263378
## 163  3.112025 3.102605 3.121445
## 164  3.210407 3.203069 3.217746
## 165  3.280870 3.274308 3.287433
## 166  3.471212 3.454532 3.487892
## 167  3.184479 3.171191 3.197767
## 168  3.157525 3.144343 3.170707
## 169  3.207484 3.201004 3.213965
## 170  3.287990 3.280975 3.295005
## 171  3.310027 3.289032 3.331022
## 172  3.394715 3.383231 3.406199
## 173  3.213630 3.199264 3.227996
## 174  3.339841 3.330027 3.349656
## 175  3.242870 3.234901 3.250838
## 176  3.156937 3.147585 3.166290
## 177  3.265143 3.258738 3.271548
## 178  3.230937 3.224280 3.237594
## 179  3.326066 3.309250 3.342882
## 180  3.287138 3.280212 3.294064
## 181  3.277081 3.267865 3.286297
## 182  3.495797 3.478896 3.512698
## 183  3.147658 3.138441 3.156875
## 184  3.302245 3.290864 3.313626
## 185  3.239538 3.233534 3.245541
## 186  3.235263 3.228610 3.241916
## 187  3.347756 3.333684 3.361828
## 188  3.237833 3.231862 3.243804
## 189  3.315293 3.297714 3.332872
## 190  3.302272 3.292765 3.311779
## 191  3.299969 3.291620 3.308317
## 192  3.172931 3.160084 3.185777
## 193  3.286115 3.279271 3.292959
## 194  3.288225 3.281434 3.295015
## 195  3.153531 3.143716 3.163346
## 196  3.315782 3.308554 3.323010
## 197  3.166253 3.152333 3.180173
## 198  3.275328 3.268540 3.282116
## 199  3.214654 3.207592 3.221717
## 200  3.243469 3.237429 3.249509
## 201  3.251164 3.244059 3.258269
## 202  3.307340 3.293667 3.321012
## 203  3.263991 3.255764 3.272218
## 204  3.416847 3.406696 3.426999
## 205  3.195829 3.184484 3.207174
## 206  3.155616 3.145964 3.165269
## 207  3.237820 3.231067 3.244573
## 208  3.120516 3.110257 3.130776
## 209  3.239772 3.233782 3.245762
## 210  3.375443 3.367611 3.383274
## 211  3.162322 3.148452 3.176192
## 212  3.304088 3.295009 3.313167
## 213  3.267487 3.261024 3.273949
## 214  3.326512 3.318265 3.334759
## 215  3.270619 3.264120 3.277117
## 216  3.285591 3.277264 3.293918
## 217  3.134940 3.121197 3.148683
## 218  3.290622 3.283822 3.297421
## 219  3.256928 3.248794 3.265061
## 220  3.316567 3.307465 3.325668
## 221  3.224877 3.212952 3.236801
## 222  3.277725 3.271003 3.284446
## 223  3.266302 3.254319 3.278286
## 224  3.239942 3.225510 3.254374
## 225  3.152113 3.139010 3.165216
## 226  3.270674 3.257704 3.283643
## 227  3.420608 3.408441 3.432774
## 228  3.285273 3.275262 3.295285
## 229  3.449912 3.430988 3.468836
## 230  3.268776 3.261943 3.275609
## 231  3.233731 3.227658 3.239805
## 232  3.286062 3.279303 3.292821
## 233  3.279483 3.272370 3.286596
## 234  3.243927 3.237875 3.249979
## 235  3.181931 3.167712 3.196149
## 236  3.228923 3.220605 3.237240
## 237  3.331503 3.317111 3.345896
## 238  3.318660 3.310461 3.326860
## 239  3.221356 3.212226 3.230485
## 240  3.347362 3.333878 3.360846
## 241  3.269063 3.262400 3.275727
## 242  3.277113 3.268800 3.285425
## 243  3.302169 3.284642 3.319696
## 244  3.236808 3.229946 3.243670
## 245  3.402806 3.394651 3.410960
## 246  3.449738 3.426042 3.473435
## 247  3.439408 3.430950 3.447866
## 248  3.278126 3.266467 3.289785
## 249  3.328545 3.321016 3.336074
## 250  3.300858 3.287422 3.314295
## 251  3.348407 3.334243 3.362570
## 252  3.175452 3.161400 3.189505
## 253  3.233952 3.227322 3.240583
## 254  3.383689 3.375299 3.392079
## 255  3.476901 3.464779 3.489023
## 256  3.259552 3.251551 3.267554
## 257  3.307053 3.296816 3.317290
## 258  3.231886 3.224670 3.239101
## 259  3.244793 3.237672 3.251914
## 260  3.323215 3.312411 3.334018
## 261  3.360408 3.351935 3.368880
## 262  3.376625 3.368436 3.384815
## 263  3.272494 3.266045 3.278942
## 264  3.354574 3.338031 3.371118
## 265  3.130947 3.119555 3.142340
## 266  3.360317 3.342090 3.378543
## 267  3.276739 3.268741 3.284737
## 268  3.181422 3.170810 3.192034
## 269  3.286412 3.277817 3.295008
## 270  3.454113 3.443138 3.465087
## 271  3.280261 3.271438 3.289083
## 272  3.431044 3.420650 3.441438
## 273  3.262243 3.249134 3.275353
## 274  3.294265 3.287330 3.301201
## 275  3.249788 3.241850 3.257725
## 276  3.291453 3.283614 3.299292
## 277  3.372886 3.365031 3.380741
## 278  3.237990 3.231224 3.244756
## 279  3.265888 3.259495 3.272282
## 280  3.145534 3.133280 3.157788
## 281  3.316693 3.307462 3.325923
## 282  3.251427 3.244431 3.258423
## 283  3.267028 3.260628 3.273429
## 284  3.309173 3.300900 3.317446
## 285  3.323625 3.315240 3.332010
## 286  3.262844 3.254592 3.271095
## 287  3.399940 3.384228 3.415651
## 288  3.361106 3.347413 3.374799
## 289  3.271301 3.264832 3.277769
## 290  3.142596 3.129024 3.156169
## 291  3.421303 3.409814 3.432792
## 292  3.314809 3.306264 3.323354
## 293  3.089147 3.079990 3.098305
## 294  3.380986 3.372360 3.389612
## 295  3.219410 3.211912 3.226907
## 296  3.247033 3.234399 3.259667
## 297  3.272541 3.261506 3.283576
## 298  3.239197 3.233207 3.245187
## 299  3.249353 3.242272 3.256433
## 300  3.239354 3.232457 3.246251
## 301  3.238632 3.232657 3.244607
## 302  3.255401 3.247067 3.263736
## 303  3.286866 3.276332 3.297400
## 304  3.279920 3.271197 3.288642
## 305  3.338727 3.322629 3.354824
## 306  3.282194 3.272178 3.292211
## 307  3.369977 3.362188 3.377767
## 308  3.205163 3.197248 3.213078
## 309  3.168407 3.158906 3.177907
## 310  3.272728 3.266079 3.279377
## 311  3.271237 3.264834 3.277640
## 312  3.269305 3.253593 3.285016
## 313  3.166650 3.156261 3.177039
## 314  3.269308 3.262850 3.275766
## 315  3.370299 3.360953 3.379645
## 316  3.313605 3.304585 3.322625
## 317  3.270938 3.262502 3.279375
## 318  3.282151 3.274142 3.290160
## 319  3.240562 3.232791 3.248332
## 320  3.265260 3.258875 3.271645
## 321  3.217354 3.209934 3.224773
## 322  3.251842 3.241265 3.262419
## 323  3.243693 3.237573 3.249812
## 324  3.293031 3.284117 3.301946
## 325  3.263715 3.257184 3.270246
## 326  3.275839 3.268973 3.282705
## 327  3.284663 3.270712 3.298614
## 328  3.186078 3.175269 3.196886
## 329  3.116247 3.107342 3.125151
## 330  3.392568 3.384312 3.400823
## 331  3.162475 3.151397 3.173552
## 332  3.295428 3.287921 3.302934
## 333  3.310453 3.293419 3.327488
## 334  3.284256 3.276065 3.292447
## 335  3.245355 3.239183 3.251526
## 336  3.282418 3.275626 3.289211
## 337  3.280723 3.272608 3.288838
## 338  3.258109 3.247838 3.268380
## 339  3.304123 3.296174 3.312072
## 340  3.395285 3.371120 3.419450
## 341  3.248208 3.238280 3.258136
## 342  3.409161 3.397987 3.420334
## 343  3.201653 3.189482 3.213824
## 344  3.255734 3.248455 3.263013
## 345  3.251816 3.241913 3.261720
## 346  3.250077 3.242797 3.257358
## 347  3.259624 3.253033 3.266215
## 348  3.287441 3.278683 3.296199
## 349  3.238973 3.233004 3.244942
## 350  3.156867 3.139426 3.174308
## 351  3.295130 3.285628 3.304632
## 352  3.302677 3.293327 3.312027
## 353  3.227828 3.215369 3.240287
## 354  3.175902 3.164348 3.187457
## 355  3.376223 3.366832 3.385613
## 356  3.147264 3.138030 3.156498
## 357  3.270555 3.264171 3.276939
## 358  3.236523 3.230533 3.242513
## 359  3.273847 3.267101 3.280593
## 360  3.404610 3.385767 3.423453
## 361  3.244268 3.238207 3.250329
## 362  3.189938 3.175105 3.204771
## 363  3.308238 3.297796 3.318681
## 364  3.414206 3.402084 3.426329
## 365  3.285237 3.269549 3.300925
## 366  3.256190 3.246820 3.265559
## 367  3.241136 3.235154 3.247117
## 368  3.240912 3.234892 3.246932
## 369  3.349731 3.340729 3.358733
## 370  3.292884 3.276360 3.309409
## 371  3.335580 3.327189 3.343972
## 372  3.376924 3.369052 3.384795
## 373  3.424012 3.413289 3.434735
## 374  3.288068 3.277367 3.298768
## 375  3.288789 3.281846 3.295732
## 376  3.281986 3.274589 3.289384
## 377  3.116247 3.107342 3.125151
## 378  3.418558 3.410222 3.426893
## 379  3.502596 3.488346 3.516845
## 380  3.235670 3.229663 3.241678
## 381  3.259975 3.251774 3.268175
## 382  3.393707 3.385468 3.401947
## 383  3.330136 3.321148 3.339124
## 384  3.271785 3.262571 3.280999
## 385  3.226218 3.217443 3.234992
## 386  3.293583 3.286671 3.300495
## 387  3.424118 3.412757 3.435479
## 388  3.196087 3.185032 3.207143
## 389  3.430196 3.418904 3.441487
## 390  3.266330 3.253786 3.278875
## 391  3.265241 3.257035 3.273446
## 392  3.248348 3.241243 3.255454
## 393  3.305782 3.295011 3.316554
## 394  3.397213 3.371991 3.422436
## 395  3.326680 3.313330 3.340030
## 396  3.166926 3.157423 3.176429
## 397  3.404579 3.395131 3.414027
## 398  3.235302 3.220505 3.250100
## 399  3.352195 3.343604 3.360786
## 400  3.236573 3.229884 3.243262
## 401  3.425734 3.415694 3.435773
## 402  3.396069 3.383968 3.408170
## 403  3.264919 3.258525 3.271313
## 404  3.444449 3.434995 3.453904
## 405  3.277174 3.270678 3.283669
## 406  3.345892 3.333738 3.358046
## 407  3.274527 3.258412 3.290641
## 408  3.254507 3.246070 3.262945
## 409  3.274812 3.265812 3.283811
## 410  3.258539 3.249271 3.267807
## 411  3.243587 3.235912 3.251262
## 412  3.268800 3.258569 3.279031
## 413  3.316508 3.307979 3.325038
## 414  3.257487 3.247909 3.267066
## 415  3.446162 3.431380 3.460944
## 416  3.116247 3.107342 3.125151
## 417  3.324983 3.314379 3.335588
## 418  3.247935 3.239500 3.256370
## 419  3.266108 3.253494 3.278722
## 420  3.281351 3.265026 3.297677
## 421  3.245984 3.238192 3.253776
## 422  3.239431 3.233430 3.245432
## 423  3.284684 3.277923 3.291446
## 424  3.284187 3.277439 3.290935
## 425  3.118620 3.109008 3.128231
## 426  3.376348 3.368439 3.384258
## 427  3.265753 3.257558 3.273948
## 428  3.400293 3.390759 3.409828
## 429  3.297834 3.285451 3.310218
## 430  3.247983 3.238615 3.257352
## 431  3.255231 3.246947 3.263515
## 432  3.456263 3.445116 3.467409
## 433  3.430120 3.420771 3.439469
## 434  3.409757 3.400497 3.419016
## 435  3.253391 3.246344 3.260437
## 436  3.516169 3.500475 3.531864
## 437  3.318218 3.309024 3.327412
## 438  3.085568 3.076502 3.094633
## 439  3.349437 3.336701 3.362173
## 440  3.291250 3.281153 3.301348
## 441  3.252040 3.242170 3.261910
## 442  3.252898 3.244936 3.260859
## 443  3.268509 3.262103 3.274916
## 444  3.141130 3.129923 3.152337
## 445  3.219229 3.211660 3.226797
## 446  3.242222 3.236162 3.248282
## 447  3.216491 3.201711 3.231270
## 448  3.154839 3.145529 3.164148
## 449  3.406790 3.398504 3.415077
## 450  3.261651 3.253498 3.269804
## 451  3.419674 3.408966 3.430382
## 452  3.310633 3.293772 3.327494
## 453  3.313405 3.302204 3.324606
## 454  3.301526 3.291258 3.311794
## 455  3.119549 3.110686 3.128413
## 456  3.402475 3.394345 3.410606
## 457  3.365364 3.357491 3.373238
## 458  3.193853 3.180215 3.207491
## 459  3.308442 3.295182 3.321702
## 460  3.377542 3.369531 3.385552
## 461  3.169152 3.159623 3.178681
## 462  3.243928 3.236247 3.251609
## 463  3.237805 3.218680 3.256930
## 464  3.263896 3.257454 3.270339
## 465  3.427634 3.403360 3.451907
## 466  3.260441 3.246804 3.274077
## 467  3.327588 3.319130 3.336047
## 468  3.184329 3.172084 3.196574
## 469  3.292678 3.285686 3.299669
## 470  3.281717 3.273208 3.290226
## 471  3.270643 3.261629 3.279657
## 472  3.271460 3.264982 3.277939
## 473  3.457664 3.449130 3.466198
## 474  3.289087 3.282279 3.295895
## 475  3.216501 3.209121 3.223882
## 476  3.286637 3.279886 3.293389
## 477  3.243661 3.235674 3.251647
## 478  3.219935 3.211599 3.228270
## 479  3.215833 3.207401 3.224266
## 480  3.173095 3.163029 3.183162
## 481  3.384264 3.371686 3.396843
## 482  3.278519 3.269554 3.287484
## 483  3.317419 3.308131 3.326707
## 484  3.303578 3.296687 3.310468
## 485  3.391296 3.380675 3.401916
## 486  3.286053 3.277428 3.294679
## 487  3.246859 3.238653 3.255065
## 488  3.128111 3.118136 3.138087
## 489  3.266688 3.260270 3.273105
## 490  3.179089 3.168479 3.189698
## 491  3.235329 3.229308 3.241351
## 492  3.213987 3.206447 3.221527
## 493  3.246596 3.237696 3.255497
## 494  3.255972 3.246572 3.265372
## 495  3.311389 3.302787 3.319991
## 496  3.445195 3.436544 3.453846
## 497  3.404361 3.395985 3.412738
## 498  3.124898 3.115952 3.133843
## 499  3.241136 3.235154 3.247117
## 500  3.309855 3.301491 3.318219
## 501  3.219527 3.211957 3.227097
## 502  3.144049 3.129122 3.158976
## 503  3.318785 3.308080 3.329491
## 504  3.457570 3.448208 3.466932
## 505  3.285930 3.275288 3.296572
## 506  3.269282 3.257566 3.280997
## 507  3.253974 3.245316 3.262631
## 508  3.390912 3.381552 3.400272
## 509  3.202603 3.191938 3.213269
## 510  3.240860 3.233131 3.248589
## 511  3.406567 3.398372 3.414761
## 512  3.214797 3.207441 3.222152
## 513  3.372921 3.353943 3.391900
## 514  3.251386 3.243426 3.259345
## 515  3.249669 3.243180 3.256159
## 516  3.274310 3.266328 3.282292
## 517  3.271056 3.264328 3.277783
## 518  3.110203 3.100760 3.119646
## 519  3.245813 3.239538 3.252088
## 520  3.279770 3.272776 3.286765
## 521  3.304293 3.296352 3.312235
## 522  3.403488 3.395284 3.411691
## 523  3.201942 3.191349 3.212535
## 524  3.265995 3.259570 3.272420
## 525  3.263537 3.255479 3.271594
## 526  3.146825 3.134224 3.159425
## 527  3.374196 3.366307 3.382086
## 528  3.146306 3.133202 3.159411
## 529  3.280884 3.274063 3.287705
## 530  3.461725 3.452221 3.471229
## 531  3.277608 3.270795 3.284420
## 532  3.219911 3.212268 3.227553
## 533  3.316641 3.302267 3.331015
## 534  3.337465 3.328479 3.346452
## 535  3.266688 3.260270 3.273105
## 536  3.247795 3.239957 3.255634
## 537  3.293861 3.282909 3.304812
## 538  3.222529 3.191490 3.253569
## 539  3.286618 3.278134 3.295101
## 540  3.280588 3.271816 3.289360
## 541  3.282492 3.272385 3.292600
## 542  3.197237 3.182620 3.211855
## 543  3.267369 3.260983 3.273756
## 544  3.239772 3.233782 3.245762
## 545  3.282770 3.272782 3.292757
## 546  3.242425 3.235405 3.249445
## 547  3.207442 3.201098 3.213785
## 548  3.215688 3.208917 3.222459
## 549  3.289593 3.278615 3.300570
## 550  3.271134 3.263074 3.279194
## 551  3.273487 3.265204 3.281770
## 552  3.328776 3.317413 3.340139
## 553  3.304570 3.296652 3.312489
## 554  3.318665 3.308768 3.328563
## 555  3.261671 3.249255 3.274087
## 556  3.302256 3.292212 3.312299
## 557  3.129447 3.120197 3.138697
## 558  3.301843 3.293907 3.309779
## 559  3.264811 3.256057 3.273566
## 560  3.386290 3.375976 3.396604
## 561  3.253795 3.246660 3.260930
## 562  3.401506 3.393411 3.409601
## 563  3.255577 3.246390 3.264765
## 564  3.298148 3.281401 3.314896
## 565  3.236738 3.228528 3.244948
## 566  3.272377 3.265950 3.278803
## 567  3.160268 3.149995 3.170542
## 568  3.311957 3.304157 3.319758
## 569  3.230578 3.222166 3.238989
## 570  3.118868 3.109998 3.127737
## 571  3.212492 3.205624 3.219360
## 572  3.364171 3.356241 3.372102
## 573  3.318277 3.309629 3.326925
## 574  3.305658 3.280802 3.330515
## 575  3.133119 3.123048 3.143190
## 576  3.339349 3.323691 3.355008
## 577  3.198159 3.180547 3.215771
## 578  3.240630 3.223968 3.257293
## 579  3.232313 3.218750 3.245876
## 580  3.251047 3.243831 3.258263
## 581  3.272905 3.258802 3.287009
## 582  3.239261 3.233253 3.245268
## 583  3.240571 3.234539 3.246604
## 584  3.240454 3.234475 3.246432
## 585  3.289705 3.282897 3.296514
## 586  3.199696 3.188334 3.211059
## 587  3.213145 3.205809 3.220482
## 588  3.310137 3.298889 3.321385
## 589  3.358553 3.340922 3.376185
## 590  3.284746 3.274043 3.295449
## 591  3.283516 3.274244 3.292788
## 592  3.206591 3.198617 3.214564
## 593  3.286232 3.279468 3.292997
## 594  3.260979 3.252373 3.269585
## 595  3.266453 3.260075 3.272831
## 596  3.425552 3.413944 3.437159
## 597  3.288205 3.276974 3.299436
## 598  3.236810 3.230816 3.242805
## 599  3.292614 3.285751 3.299477
## 600  3.389074 3.377262 3.400886
## 601  3.428391 3.419759 3.437023
## 602  3.301140 3.292651 3.309629
## 603  3.248700 3.231666 3.265734
## 604  3.265853 3.253491 3.278214
## 605  3.273730 3.266801 3.280658
## 606  3.398086 3.390013 3.406159
## 607  3.324295 3.316019 3.332572
## 608  3.272867 3.265267 3.280467
## 609  3.244609 3.238535 3.250683
## 610  3.115274 3.105822 3.124727
## 611  3.304805 3.296881 3.312728
## 612  3.242904 3.236858 3.248951
## 613  3.266347 3.259908 3.272785
## 614  3.324955 3.317659 3.332251
## 615  3.216331 3.208956 3.223705
## 616  3.265548 3.259139 3.271957
## 617  3.160384 3.148444 3.172324
## 618  3.289219 3.272235 3.306204
## 619  3.477984 3.468540 3.487428
## 620  3.445255 3.426927 3.463584
## 621  3.311794 3.303514 3.320073
## 622  3.262586 3.256115 3.269057
## 623  3.346117 3.318452 3.373782
## 624  3.289462 3.281011 3.297914
## 625  3.271130 3.264655 3.277605
## 626  3.216565 3.209115 3.224016
## 627  3.423422 3.405613 3.441231
## 628  3.471418 3.461562 3.481274
## 629  3.250433 3.239124 3.261743
## 630  3.314828 3.307033 3.322623
## 631  3.351511 3.330460 3.372563
## 632  3.118580 3.109703 3.127456
## 633  3.446332 3.431490 3.461175
## 634  3.314530 3.304774 3.324285
## 635  3.210117 3.202140 3.218094
## 636  3.390489 3.381819 3.399159
## 637  3.435351 3.426228 3.444475
## 638  3.245184 3.239010 3.251358
## 639  3.236810 3.230816 3.242805
## 640  3.160503 3.150192 3.170814
## 641  3.253691 3.243820 3.263563
## 642  3.244609 3.238535 3.250683
## 643  3.245184 3.239010 3.251358
## 644  3.234187 3.227431 3.240943
## 645  3.276470 3.268664 3.284277
## 646  3.282458 3.275698 3.289217
## 647  3.317984 3.308259 3.327708
## 648  3.474154 3.461562 3.486746
## 649  3.326342 3.318106 3.334578
## 650  3.349395 3.333311 3.365480
## 651  3.226703 3.216005 3.237402
## 652  3.245813 3.239538 3.252088
## 653  3.285205 3.274769 3.295641
## 654  3.212321 3.205483 3.219159
## 655  3.383806 3.375516 3.392096
## 656  3.118236 3.108733 3.127739
## 657  3.231449 3.224811 3.238087
## 658  3.282482 3.275661 3.289303
## 659  3.207271 3.200923 3.213620
## 660  3.133144 3.123529 3.142758
## 661  3.422409 3.409846 3.434972
## 662  3.420830 3.410457 3.431204
## 663  3.132959 3.123038 3.142880
## 664  3.206866 3.200603 3.213130
## 665  3.286243 3.279394 3.293092
## 666  3.270619 3.264120 3.277117
## 667  3.163571 3.153262 3.173880
## 668  3.269482 3.262957 3.276006
## 669  3.214544 3.201052 3.228036
## 670  3.272728 3.266079 3.279377
## 671  3.264911 3.256755 3.273067
## 672  3.279317 3.271418 3.287216
## 673  3.242563 3.236512 3.248615
## 674  3.300309 3.292288 3.308330
## 675  3.377158 3.369178 3.385138
## 676  3.250639 3.244129 3.257148
## 677  3.245291 3.239181 3.251400
## 678  3.152390 3.139165 3.165614
## 679  3.282653 3.275843 3.289463
## 680  3.269138 3.262670 3.275605
## 681  3.358052 3.351038 3.365067
## 682  3.271301 3.264832 3.277769
## 683  3.276851 3.268969 3.284734
## 684  3.272089 3.265643 3.278535
## 685  3.174106 3.164491 3.183722
## 686  3.304893 3.295351 3.314435
## 687  3.295959 3.288527 3.303391
## 688  3.316878 3.301891 3.331865
## 689  3.291996 3.284976 3.299016
## 690  3.169410 3.158572 3.180248
## 691  3.312397 3.297908 3.326885
## 692  3.212779 3.206047 3.219512
## 693  3.270448 3.263940 3.276956
## 694  3.294210 3.280706 3.307715
## 695  3.403733 3.395458 3.412008
## 696  3.247220 3.239212 3.255228
## 697  3.228907 3.213676 3.244138
## 698  3.336786 3.325256 3.348317
## 699  3.275445 3.260268 3.290623
## 700  3.280904 3.273035 3.288773
## 701  3.333705 3.325884 3.341525
## 702  3.272560 3.266086 3.279035
## 703  3.272731 3.265324 3.280138
## 704  3.302536 3.294349 3.310722
## 705  3.130736 3.120069 3.141403
## 706  3.364171 3.356241 3.372102
## 707  3.308481 3.300942 3.316020
## 708  3.228998 3.222342 3.235655
## 709  3.267369 3.260983 3.273756
## 710  3.240965 3.234986 3.246945
## 711  3.513223 3.498652 3.527794
## 712  3.254363 3.242456 3.266269
## 713  3.269138 3.262670 3.275605
## 714  3.257453 3.248021 3.266884
## 715  3.349563 3.340509 3.358617
## 716  3.241712 3.234019 3.249405
## 717  3.254051 3.245914 3.262188
## 718  3.288065 3.281216 3.294914
## 719  3.240113 3.234131 3.246095
## 720  3.444727 3.435745 3.453710
## 721  3.140075 3.129974 3.150177
## 722  3.254667 3.237838 3.271496
## 723  3.352754 3.341928 3.363581
## 724  3.220379 3.212815 3.227944
## 725  3.289886 3.283016 3.296757
## 726  3.331103 3.320434 3.341773
## 727  3.274993 3.265952 3.284033
## 728  3.247636 3.239791 3.255480
## 729  3.299582 3.292034 3.307131
## 730  3.260642 3.248075 3.273209
## 731  3.242787 3.236772 3.248802
## 732  3.404297 3.396143 3.412452
## 733  3.239080 3.233010 3.245149
## 734  3.302779 3.295935 3.309622
## 735  3.131072 3.112946 3.149198
## 736  3.249713 3.240816 3.258611
## 737  3.168069 3.154539 3.181599
## 738  3.236182 3.230187 3.242176
## 739  3.285584 3.271105 3.300063
## 740  3.323315 3.314618 3.332011
## 741  3.305146 3.295979 3.314313
## 742  3.334524 3.325125 3.343923
## 743  3.236640 3.230638 3.242642
## 744  3.121912 3.111715 3.132108
## 745  3.247400 3.241193 3.253607
## 746  3.298093 3.289856 3.306330
## 747  3.446435 3.436034 3.456836
## 748  3.124753 3.114249 3.135257
## 749  3.278055 3.270783 3.285327
## 750  3.356561 3.332445 3.380677
## 751  3.225286 3.214650 3.235923
## 752  3.261787 3.255302 3.268271
## 753  3.273305 3.260425 3.286185
## 754  3.241253 3.235242 3.247264
## 755  3.232709 3.226605 3.238812
## 756  3.394714 3.381220 3.408207
## 757  3.301131 3.289869 3.312393
## 758  3.126101 3.117149 3.135054
## 759  3.394007 3.385394 3.402619
## 760  3.235266 3.229179 3.241352
## 761  3.246420 3.239949 3.252891
## 762  3.242670 3.236629 3.248711
## 763  3.312953 3.305516 3.320390
## 764  3.273958 3.266149 3.281768
## 765  3.246495 3.240238 3.252751
## 766  3.203052 3.196829 3.209276
## 767  3.214168 3.206835 3.221502
## 768  3.397108 3.387422 3.406794
## 769  3.238906 3.232149 3.245663
## 770  3.210233 3.203760 3.216706
## 771  3.377275 3.369178 3.385373
## 772  3.248540 3.242258 3.254822
## 773  3.291133 3.284322 3.297944
## 774  3.477647 3.459988 3.495305
## 775  3.265130 3.248326 3.281934
## 776  3.321068 3.312399 3.329737
## 777  3.243304 3.226593 3.260016
## 778  3.293637 3.283031 3.304242
## 779  3.280500 3.272537 3.288463
## 780  3.279001 3.267901 3.290101
## 781  3.284932 3.274926 3.294938
## 782  3.160170 3.149891 3.170450
## 783  3.253132 3.245740 3.260523
## 784  3.244216 3.236519 3.251913
## 785  3.288777 3.273495 3.304059
## 786  3.408068 3.386987 3.429148
## 787  3.247976 3.240135 3.255818
## 788  3.230385 3.218826 3.241944
## 789  3.286797 3.279901 3.293693
## 790  3.156032 3.146719 3.165345
## 791  3.332288 3.324192 3.340385
## 792  3.206812 3.196193 3.217430
## 793  3.253064 3.244953 3.261175
## 794  3.285785 3.279004 3.292566
## 795  3.291484 3.284435 3.298534
## 796  3.300703 3.292756 3.308650
## 797  3.392931 3.381188 3.404675
## 798  3.242212 3.236121 3.248303
## 799  3.251887 3.243535 3.260238
## 800  3.172660 3.161782 3.183537
## 801  3.179316 3.168596 3.190036
## 802  3.209029 3.202695 3.215363
## 803  3.136684 3.126401 3.146966
## 804  3.377435 3.369548 3.385322
## 805  3.291367 3.284446 3.298289
## 806  3.266112 3.259736 3.272488
## 807  3.210013 3.202673 3.217353
## 808  3.241871 3.235808 3.247934
## 809  3.129134 3.121439 3.136830
## 810  3.167034 3.156414 3.177653
## 811  3.290153 3.283047 3.297259
## 812  3.289034 3.282121 3.295947
## 813  3.134376 3.124392 3.144360
## 814  3.307308 3.299386 3.315231
## 815  3.300041 3.292454 3.307627
## 816  3.125643 3.116721 3.134566
## 817  3.155062 3.145783 3.164342
## 818  3.207271 3.200923 3.213620
## 819  3.140562 3.130451 3.150672
## 820  3.231993 3.222484 3.241501
## 821  3.276367 3.267070 3.285664
## 822  3.367303 3.359457 3.375149
## 823  3.096410 3.086291 3.106528
## 824  3.341304 3.324211 3.358396
## 825  3.151131 3.141913 3.160350
## 826  3.212282 3.204877 3.219688
## 827  3.262908 3.254840 3.270976
## 828  3.197352 3.189169 3.205534
## 829  3.267540 3.261159 3.273920
## 830  3.277090 3.269287 3.284894
## 831  3.284698 3.277957 3.291439
## 832  3.219939 3.210810 3.229067
## 833  3.286744 3.279957 3.293530
## 834  3.385769 3.377116 3.394423
## 835  3.247176 3.240925 3.253428
## 836  3.316420 3.300613 3.332227
## 837  3.244726 3.238626 3.250826
## 838  3.147130 3.133706 3.160554
## 839  3.316922 3.309709 3.324134
## 840  3.256303 3.248250 3.264355
## 841  3.305008 3.293324 3.316692
## 842  3.401740 3.393465 3.410015
## 843  3.245460 3.230009 3.260911
## 844  3.240501 3.223864 3.257138
## 845  3.313381 3.304660 3.322102
## 846  3.519573 3.507931 3.531215
## 847  3.246101 3.238209 3.253994
## 848  3.413102 3.403969 3.422235
## 849  3.259538 3.252265 3.266811
## 850  3.151792 3.138535 3.165050
## 851  3.235894 3.229870 3.241919
## 852  3.273069 3.266440 3.279698
## 853  3.291197 3.284269 3.298124
## 854  3.299018 3.291414 3.306622
## 855  3.330603 3.321918 3.339289
## 856  3.233217 3.226515 3.239920
## 857  3.159864 3.149504 3.170223
## 858  3.239943 3.233957 3.245928
## 859  3.132447 3.122526 3.142369
## 860  3.268957 3.262557 3.275357
## 861  3.323570 3.306616 3.340524
## 862  3.284121 3.275991 3.292251
## 863  3.272494 3.266045 3.278942
## 864  3.225320 3.217720 3.232919
## 865  3.267255 3.260032 3.274478
## 866  3.273234 3.262809 3.283658
## 867  3.251345 3.244281 3.258409
## 868  3.231726 3.225040 3.238412
## 869  3.288411 3.279691 3.297130
## 870  3.274262 3.267680 3.280844
## 871  3.245983 3.239714 3.252252
## 872  3.289203 3.275524 3.302883
## 873  3.289742 3.276757 3.302728
## 874  3.334389 3.317905 3.350872
## 875  3.331956 3.322241 3.341672
## 876  3.216947 3.204537 3.229357
## 877  3.206866 3.200603 3.213130
## 878  3.395359 3.387165 3.403553
## 879  3.122969 3.114080 3.131859
## 880  3.308529 3.294434 3.322625
## 881  3.237258 3.231189 3.243327
## 882  3.235384 3.227622 3.243146
## 883  3.138200 3.128140 3.148261
## 884  3.272103 3.264078 3.280129
## 885  3.260511 3.252332 3.268690
## 886  3.317947 3.308151 3.327744
## 887  3.379545 3.371568 3.387521
## 888  3.247272 3.240652 3.253892
## 889  3.396349 3.380065 3.412633
## 890  3.209094 3.201119 3.217070
## 891  3.270619 3.264120 3.277117
## 892  3.303870 3.293396 3.314344
## 893  3.196257 3.183130 3.209385
## 894  3.275602 3.262431 3.288774
## 895  3.256323 3.247275 3.265371
## 896  3.294541 3.284347 3.304735
## 897  3.287319 3.280577 3.294061
## 898  3.163401 3.153096 3.173706
## 899  3.166075 3.155697 3.176453
## 900  3.244950 3.238860 3.251040
## 901  3.240742 3.234716 3.246767
## 902  3.291440 3.275996 3.306885
## 903  3.346189 3.337433 3.354945
## 904  3.448662 3.431349 3.465974
## 905  3.335978 3.325375 3.346580
## 906  3.172782 3.165174 3.180390
## 907  3.321927 3.308437 3.335416
## 908  3.394124 3.385435 3.402813
## 909  3.374654 3.366679 3.382630
## 910  3.417292 3.407299 3.427285
## 911  3.240848 3.234847 3.246849
## 912  3.362954 3.354406 3.371502
## 913  3.272899 3.266260 3.279537
## 914  3.307725 3.295183 3.320267
## 915  3.329304 3.321010 3.337597
## 916  3.261033 3.253023 3.269043
## 917  3.167608 3.158094 3.177121
## 918  3.218821 3.211331 3.226311
## 919  3.317190 3.308742 3.325638
## 920  3.266570 3.260199 3.272941
## 921  3.205375 3.193473 3.217276
## 922  3.303441 3.295457 3.311426
## 923  3.409512 3.400382 3.418642
## 924  3.427348 3.418804 3.435892
## 925  3.275626 3.269049 3.282203
## 926  3.314642 3.306779 3.322505
## 927  3.198728 3.190703 3.206753
## 928  3.425578 3.416845 3.434311
## 929  3.456061 3.439681 3.472440
## 930  3.312982 3.301884 3.324079
## 931  3.439630 3.423357 3.455903
## 932  3.246814 3.240044 3.253585
## 933  3.248248 3.239358 3.257138
## 934  3.245632 3.239499 3.251764
## 935  3.252157 3.242264 3.262050
## 936  3.259941 3.246222 3.273660
## 937  3.123140 3.114252 3.132028
## 938  3.245983 3.239714 3.252252
## 939  3.218430 3.203879 3.232981
## 940  3.249211 3.242643 3.255780
## 941  3.129063 3.120005 3.138122
## 942  3.369924 3.362089 3.377760
## 943  3.276340 3.268584 3.284096
## 944  3.455255 3.443959 3.466552
## 945  3.348995 3.339901 3.358090
## 946  3.279594 3.271751 3.287437
## 947  3.243651 3.235871 3.251431
## 948  3.308795 3.295653 3.321938
## 949  3.320951 3.312460 3.329442
## 950  3.270448 3.263940 3.276956
## 951  3.164086 3.155885 3.172286
## 952  3.386438 3.372108 3.400767
## 953  3.247859 3.240067 3.255652
## 954  3.266517 3.260090 3.272945
## 955  3.270832 3.264295 3.277369
## 956  3.260691 3.252194 3.269189
## 957  3.365649 3.357119 3.374180
## 958  3.338765 3.329355 3.348176
## 959  3.419015 3.409428 3.428601
## 960  3.246625 3.238201 3.255048
## 961  3.266566 3.257255 3.275876
## 962  3.243362 3.237243 3.249482
## 963  3.304240 3.296207 3.312274
## 964  3.392146 3.378641 3.405652
## 965  3.266380 3.249287 3.283472
## 966  3.180527 3.172902 3.188153
## 967  3.218010 3.210461 3.225560
## 968  3.268616 3.262230 3.275002
## 969  3.291655 3.284616 3.298694
## 970  3.244215 3.238114 3.250316
## 971  3.321175 3.312854 3.329496
## 972  3.213126 3.203979 3.222273
## 973  3.192462 3.184193 3.200730
## 974  3.328334 3.320039 3.336629
## 975  3.210963 3.201783 3.220144
## 976  3.296900 3.288505 3.305295
## 977  3.270161 3.263739 3.276583
## 978  3.320035 3.311736 3.328333
## 979  3.299673 3.283608 3.315738
## 980  3.302077 3.293990 3.310165
## 981  3.344572 3.335699 3.353445
## 982  3.243245 3.237200 3.249290
## 983  3.406955 3.397897 3.416013
## 984  3.432006 3.422441 3.441571
## 985  3.395457 3.385737 3.405177
## 986  3.312729 3.300901 3.324557
## 987  3.298550 3.289144 3.307956
## 988  3.396991 3.387420 3.406562
## 989  3.290227 3.283369 3.297086
## 990  3.243693 3.237573 3.249812
## 991  3.301683 3.293397 3.309970
## 992  3.243610 3.235378 3.251841
## 993  3.245836 3.237701 3.253971
## 994  3.245578 3.239461 3.251695
## 995  3.460649 3.451331 3.469967
## 996  3.244438 3.238371 3.250506
## 997  3.286232 3.279468 3.292997
## 998  3.299305 3.291607 3.307004
## 999  3.236640 3.230638 3.242642
## 1000 3.371673 3.362148 3.381199
## 1001 3.384477 3.375572 3.393383
## 1002 3.338752 3.330958 3.346547
## 1003 3.135217 3.124775 3.145660
## 1004 3.124791 3.115876 3.133706
## 1005 3.218728 3.211233 3.226223
## 1006 3.160692 3.150366 3.171019
## 1007 3.252251 3.244524 3.259979
## 1008 3.276124 3.259075 3.293173
## 1009 3.240221 3.232470 3.247971
## 1010 3.309454 3.301630 3.317277
## 1011 3.256075 3.248813 3.263337
## 1012 3.300546 3.291592 3.309500
## 1013 3.366299 3.357790 3.374809
## 1014 3.306143 3.292333 3.319953
## 1015 3.447263 3.429320 3.465206
## 1016 3.269144 3.255033 3.283256
## 1017 3.241519 3.234966 3.248073
## 1018 3.197947 3.189411 3.206484
## 1019 3.152676 3.143389 3.161963
## 1020 3.454917 3.445375 3.464459
## 1021 3.285201 3.276494 3.293908
## 1022 3.420326 3.411861 3.428791
## 1023 3.166382 3.154392 3.178373
## 1024 3.270789 3.264299 3.277279
## 1025 3.198055 3.186609 3.209502
## 1026 3.406859 3.397317 3.416401
## 1027 3.247283 3.241068 3.253498
## 1028 3.219581 3.206411 3.232751
## 1029 3.302144 3.293057 3.311231
## 1030 3.095046 3.084935 3.105157
## 1031 3.180440 3.161894 3.198986
## 1032 3.283582 3.273639 3.293526
## 1033 3.306797 3.298872 3.314723
## 1034 3.273512 3.264456 3.282568
## 1035 3.273069 3.266440 3.279698
## 1036 3.292779 3.283500 3.302058
## 1037 3.219527 3.211957 3.227097
## 1038 3.173124 3.156726 3.189522
## 1039 3.234243 3.228173 3.240312
## 1040 3.238174 3.232204 3.244144
## 1041 3.413396 3.400131 3.426661
## 1042 3.176157 3.159252 3.193063
## 1043 3.265088 3.255567 3.274610
## 1044 3.307439 3.296984 3.317893
## 1045 3.307912 3.290841 3.324983
## 1046 3.242222 3.236162 3.248282
## 1047 3.305340 3.295019 3.315661
## 1048 3.322826 3.314512 3.331140
## 1049 3.290280 3.281146 3.299414
## 1050 3.378351 3.370389 3.386313
## 1051 3.250206 3.242482 3.257930
## 1052 3.378863 3.370899 3.386827
## 1053 3.400685 3.390359 3.411010
## 1054 3.193324 3.182384 3.204264
## 1055 3.293583 3.286671 3.300495
## 1056 3.242511 3.234774 3.250248
## 1057 3.276532 3.269921 3.283142
## 1058 3.237950 3.231953 3.243948
## 1059 3.266688 3.260270 3.273105
## 1060 3.358446 3.351477 3.365416
## 1061 3.268499 3.262037 3.274960
## 1062 3.268269 3.260276 3.276262
## 1063 3.219446 3.203230 3.235663
## 1064 3.398401 3.386249 3.410552
## 1065 3.272147 3.264094 3.280200
## 1066 3.418197 3.408463 3.427932
## 1067 3.237492 3.231517 3.243468
## 1068 3.274651 3.266697 3.282604
## 1069 3.161528 3.150836 3.172221
## 1070 3.246943 3.239165 3.254721
## 1071 3.284878 3.276535 3.293222
## 1072 3.175543 3.163515 3.187571
## 1073 3.226817 3.218474 3.235160
## 1074 3.184800 3.173816 3.195785
## 1075 3.185104 3.174572 3.195637
## 1076 3.300938 3.292869 3.309006
## 1077 3.322709 3.314490 3.330928
## 1078 3.268615 3.258419 3.278811
## 1079 3.221232 3.213655 3.228808
## 1080 3.233542 3.225392 3.241692
## 1081 3.243586 3.237539 3.249633
## 1082 3.326853 3.318583 3.335123
## 1083 3.280548 3.265999 3.295098
## 1084 3.213003 3.206041 3.219965
## 1085 3.174558 3.166162 3.182955
## 1086 3.183084 3.175364 3.190804
## 1087 3.288530 3.276746 3.300315
## 1088 3.291966 3.280115 3.303818
## 1089 3.245813 3.239538 3.252088
## 1090 3.245983 3.239714 3.252252
## 1091 3.434222 3.424898 3.443546
## 1092 3.167530 3.157867 3.177193
## 1093 3.206131 3.198620 3.213643
## 1094 3.258539 3.248497 3.268581
## 1095 3.321239 3.312593 3.329885
## 1096 3.200144 3.193844 3.206444
## 1097 3.262752 3.253197 3.272306
## 1098 3.257176 3.248054 3.266297
## 1099 3.270107 3.263578 3.276637
## 1100 3.337242 3.328325 3.346158
## 1101 3.237663 3.231690 3.243636
## 1102 3.236861 3.230114 3.243607
## 1103 3.356484 3.340562 3.372406
## 1104 3.319470 3.310977 3.327963
## 1105 3.276419 3.268334 3.284504
## 1106 3.256126 3.245889 3.266363
## 1107 3.237196 3.228896 3.245496
## 1108 3.214850 3.207504 3.222196
## 1109 3.416834 3.406965 3.426702
## 1110 3.335794 3.323836 3.347752
## 1111 3.209317 3.202976 3.215658
## 1112 3.350213 3.338892 3.361534
## 1113 3.278284 3.270455 3.286112
## 1114 3.241030 3.233310 3.248751
## 1115 3.269532 3.263152 3.275912
## 1116 3.284698 3.277957 3.291439
## 1117 3.273053 3.265182 3.280923
## 1118 3.433316 3.423737 3.442896
## 1119 3.077122 3.062328 3.091915
## 1120 3.196353 3.177948 3.214758
## 1121 3.168527 3.154995 3.182060
## 1122 3.174433 3.166850 3.182017
## 1123 3.269308 3.262850 3.275766
## 1124 3.382667 3.368180 3.397155
## 1125 3.251940 3.243371 3.260508
## 1126 3.294936 3.287675 3.302197
## 1127 3.265028 3.256772 3.273284
## 1128 3.207685 3.191256 3.224114
## 1129 3.250868 3.241943 3.259794
## 1130 3.099659 3.089495 3.109823
## 1131 3.514248 3.501077 3.527419
## 1132 3.309889 3.301528 3.318250
## 1133 3.140355 3.127015 3.153695
## 1134 3.274022 3.266130 3.281914
## 1135 3.204372 3.193640 3.215104
## 1136 3.167151 3.156633 3.177669
## 1137 3.267470 3.259471 3.275469
## 1138 3.250419 3.242511 3.258327
## 1139 3.338039 3.322405 3.353673
## 1140 3.208271 3.193965 3.222577
## 1141 3.321281 3.310336 3.332227
## 1142 3.317020 3.308552 3.325487
## 1143 3.221442 3.213977 3.228906
## 1144 3.299427 3.288141 3.310712
## 1145 3.243533 3.237419 3.249647
## 1146 3.282268 3.274328 3.290208
## 1147 3.268168 3.261746 3.274590
## 1148 3.403733 3.395458 3.412008
## 1149 3.403439 3.394023 3.412855
## 1150 3.200996 3.194668 3.207325
## 1151 3.140089 3.129300 3.150878
## 1152 3.258709 3.248672 3.268746
## 1153 3.284713 3.267801 3.301624
## 1154 3.289375 3.282481 3.296269
## 1155 3.307138 3.299215 3.315061
## 1156 3.378677 3.366150 3.391205
## 1157 3.276291 3.268484 3.284098
## 1158 3.236731 3.222934 3.250528
## 1159 3.239360 3.230014 3.248705
## 1160 3.174146 3.166550 3.181742
## 1161 3.240102 3.233947 3.246258
## 1162 3.320916 3.312401 3.329431
## 1163 3.303558 3.295471 3.311646
## 1164 3.381955 3.373292 3.390618
## 1165 3.228164 3.220557 3.235771
## 1166 3.247006 3.240755 3.253257
## 1167 3.336678 3.328612 3.344743
## 1168 3.356657 3.348597 3.364716
## 1169 3.523346 3.505451 3.541241
## 1170 3.259606 3.251573 3.267638
## 1171 3.295866 3.287717 3.304016
## 1172 3.248706 3.239766 3.257645
## 1173 3.416831 3.407759 3.425904
## 1174 3.318330 3.309865 3.326795
## 1175 3.409866 3.397375 3.422357
## 1176 3.274364 3.265355 3.283374
## 1177 3.272899 3.266260 3.279537
## 1178 3.280623 3.273485 3.287760
## 1179 3.376647 3.368649 3.384645
## 1180 3.206879 3.192447 3.221311
## 1181 3.408787 3.399584 3.417991
## 1182 3.165753 3.155364 3.176142
## 1183 3.304016 3.295823 3.312210
## 1184 3.267487 3.261024 3.273949
## 1185 3.216906 3.209463 3.224349
## 1186 3.246502 3.228988 3.264017
## 1187 3.199413 3.190673 3.208152
## 1188 3.264855 3.258384 3.271326
## 1189 3.234360 3.228318 3.240402
## 1190 3.297360 3.287017 3.307703
## 1191 3.259616 3.251529 3.267703
## 1192 3.339498 3.331602 3.347394
## 1193 3.442321 3.432662 3.451980
## 1194 3.186427 3.172290 3.200563
## 1195 3.416935 3.408491 3.425379
## 1196 3.275961 3.267985 3.283937
## 1197 3.304869 3.296756 3.312982
## 1198 3.442764 3.434102 3.451426
## 1199 3.321649 3.311146 3.332152
## 1200 3.296783 3.288527 3.305038
## 1201 3.310868 3.303362 3.318373
## 1202 3.293392 3.285731 3.301053
## 1203 3.217300 3.209900 3.224701
## 1204 3.305092 3.297112 3.313073
## 1205 3.367303 3.359457 3.375149
## 1206 3.315603 3.304500 3.326705
## 1207 3.284589 3.274190 3.294987
## 1208 3.446433 3.437217 3.455649
## 1209 3.180636 3.162310 3.198962
## 1210 3.233050 3.226960 3.239140
## 1211 3.259180 3.247802 3.270559
## 1212 3.312621 3.299459 3.325782
## 1213 3.292049 3.285144 3.298954
## 1214 3.241136 3.235154 3.247117
## 1215 3.323220 3.315023 3.331417
## 1216 3.242480 3.234437 3.250523
## 1217 3.448477 3.437926 3.459027
## 1218 3.329113 3.320038 3.338188
## 1219 3.320289 3.310699 3.329878
## 1220 3.199803 3.193509 3.206097
## 1221 3.309230 3.301379 3.317080
## 1222 3.240860 3.233131 3.248589
## 1223 3.197255 3.186395 3.208116
## 1224 3.427778 3.418581 3.436976
## 1225 3.169781 3.160209 3.179353
## 1226 3.272776 3.264635 3.280916
## 1227 3.317755 3.309468 3.326041
## 1228 3.274768 3.266682 3.282854
## 1229 3.332458 3.323605 3.341312
## 1230 3.212005 3.204682 3.219329
## 1231 3.157289 3.147872 3.166706
## 1232 3.239879 3.233858 3.245899
## 1233 3.284913 3.276317 3.293509
## 1234 3.194815 3.181818 3.207813
## 1235 3.272776 3.264635 3.280916
## 1236 3.262551 3.248923 3.276180
## 1237 3.228998 3.222342 3.235655
## 1238 3.259085 3.249415 3.268756
## 1239 3.449963 3.440366 3.459560
## 1240 3.325883 3.315397 3.336369
## 1241 3.217077 3.209636 3.224517
## 1242 3.248735 3.238472 3.258998
## 1243 3.156616 3.144824 3.168408
## 1244 3.240720 3.234038 3.247402
## 1245 3.434135 3.417542 3.450728
## 1246 3.212176 3.204854 3.219498
## 1247 3.302374 3.295578 3.309169
## 1248 3.476428 3.465639 3.487217
## 1249 3.275397 3.266159 3.284636
## 1250 3.269984 3.261833 3.278136
## 1251 3.214115 3.206749 3.221481
## 1252 3.127071 3.118071 3.136071
## 1253 3.447564 3.438272 3.456856
## 1254 3.277273 3.268191 3.286354
## 1255 3.144987 3.132225 3.157749
## 1256 3.245813 3.239538 3.252088
## 1257 3.289257 3.280340 3.298174
## 1258 3.270992 3.263786 3.278197
## 1259 3.358693 3.349937 3.367450
## 1260 3.165796 3.155057 3.176534
## 1261 3.134951 3.125002 3.144900
## 1262 3.236406 3.230371 3.242440
## 1263 3.297922 3.289665 3.306180
## 1264 3.246032 3.237014 3.255049
## 1265 3.273804 3.267300 3.280309
## 1266 3.285084 3.276501 3.293666
## 1267 3.268850 3.262456 3.275245
## 1268 3.130265 3.118848 3.141683
## 1269 3.329062 3.317513 3.340611
## 1270 3.211478 3.200767 3.222189
## 1271 3.364712 3.355886 3.373538
## 1272 3.252168 3.243255 3.261081
## 1273 3.433998 3.424502 3.443494
## 1274 3.247342 3.238313 3.256371
## 1275 3.278807 3.269801 3.287812
## 1276 3.288077 3.280440 3.295713
## 1277 3.275737 3.267582 3.283893
## 1278 3.382786 3.374085 3.391486
## 1279 3.358819 3.350771 3.366867
## 1280 3.227740 3.213431 3.242049
## 1281 3.249289 3.242252 3.256326
## 1282 3.237205 3.231213 3.243196
## 1283 3.295304 3.286313 3.304296
## 1284 3.163867 3.153446 3.174288
## 1285 3.214479 3.202768 3.226189
## 1286 3.242393 3.236338 3.248448
## 1287 3.321974 3.313588 3.330359
## 1288 3.123172 3.112371 3.133973
## 1289 3.302365 3.294159 3.310571
## 1290 3.190976 3.176876 3.205076
## 1291 3.294271 3.284608 3.303934
## 1292 3.242894 3.236737 3.249050
## 1293 3.121488 3.112614 3.130362
## 1294 3.539871 3.517802 3.561940
## 1295 3.342036 3.333742 3.350331
## 1296 3.122473 3.111988 3.132957
## 1297 3.295458 3.288453 3.302464
## 1298 3.406230 3.396800 3.415661
## 1299 3.242851 3.225692 3.260010
## 1300 3.372886 3.365031 3.380741
## 1301 3.401617 3.392142 3.411093
## 1302 3.424300 3.415994 3.432606
## 1303 3.276534 3.269895 3.283174
## 1304 3.368592 3.352369 3.384816
## 1305 3.191397 3.179816 3.202978
## 1306 3.276708 3.267446 3.285969
## 1307 3.290711 3.278757 3.302665
## 1308 3.245991 3.234621 3.257360
## 1309 3.350570 3.334937 3.366203
## 1310 3.384915 3.369441 3.400389
## 1311 3.356073 3.347370 3.364775
## 1312 3.177924 3.166441 3.189406
## 1313 3.470503 3.461300 3.479705
## 1314 3.158321 3.146653 3.169988
## 1315 3.240402 3.232722 3.248082
## 1316 3.232851 3.216126 3.249576
## 1317 3.273116 3.265015 3.281218
## 1318 3.277271 3.269261 3.285282
## 1319 3.318618 3.310017 3.327218
## 1320 3.148510 3.139285 3.157736
## 1321 3.185616 3.175114 3.196117
## 1322 3.149533 3.140278 3.158788
## 1323 3.273860 3.267311 3.280410
## 1324 3.272776 3.264635 3.280916
## 1325 3.268844 3.260702 3.276986
## 1326 3.242276 3.236270 3.248282
## 1327 3.275567 3.267392 3.283742
## 1328 3.281513 3.274692 3.288333
## 1329 3.434459 3.424290 3.444628
## 1330 3.267685 3.252838 3.282533
## 1331 3.241082 3.235067 3.247098
## 1332 3.275903 3.269290 3.282516
## 1333 3.250815 3.241793 3.259837
## 1334       NA       NA       NA
## 1335 3.372491 3.363360 3.381622
## 1336 3.236568 3.227202 3.245935
## 1337 3.152539 3.141894 3.163185
## 1338 3.158764 3.148225 3.169303
## 1339 3.294621 3.286342 3.302900
## 1340 3.413316 3.404992 3.421640
## 1341 3.216842 3.209448 3.224236
## 1342 3.263726 3.257272 3.270179
## 1343 3.369980 3.353029 3.386930
## 1344 3.194241 3.182770 3.205713
## 1345 3.199292 3.192999 3.205584
## 1346 3.248014 3.234072 3.261957
## 1347 3.164389 3.154039 3.174740
## 1348 3.318447 3.309823 3.327071
## 1349 3.267082 3.260718 3.273445
## 1350 3.275567 3.267392 3.283742
## 1351 3.226678 3.217777 3.235579
## 1352 3.346695 3.337622 3.355767
## 1353 3.117898 3.109020 3.126776
## 1354 3.168242 3.156842 3.179642
## 1355 3.320898 3.312205 3.329590
## 1356 3.345302 3.336130 3.354474
## 1357 3.209604 3.203214 3.215995
## 1358 3.301566 3.293429 3.309703
## 1359 3.199194 3.188281 3.210108
## 1360 3.347344 3.338259 3.356429
## 1361 3.177664 3.164319 3.191010
## 1362 3.263321 3.256877 3.269765
## 1363 3.443459 3.434459 3.452460
## 1364 3.235777 3.229670 3.241884
## 1365 3.274939 3.265795 3.284084
## 1366 3.239339 3.222580 3.256098
## 1367 3.303164 3.294874 3.311454
## 1368 3.406060 3.396610 3.415510
## 1369 3.261217 3.244314 3.278120
## 1370 3.370369 3.354505 3.386233
## 1371 3.276204 3.259095 3.293314
## 1372 3.412347 3.404020 3.420674
## 1373 3.347082 3.332655 3.361509
## 1374 3.421402 3.413107 3.429698
## 1375 3.210718 3.199051 3.222385
## 1376 3.405566 3.390051 3.421081
## 1377 3.197659 3.180211 3.215106
## 1378 3.275532 3.267045 3.284019
## 1379 3.211718 3.204392 3.219043
## 1380 3.306733 3.298789 3.314677
## 1381 3.214837 3.207226 3.222447
## 1382 3.275109 3.267057 3.283160
## 1383 3.243586 3.237539 3.249633
## 1384 3.319981 3.311547 3.328416
## 1385 3.198951 3.192656 3.205246
## 1386 3.251048 3.243211 3.258884
## 1387 3.266102 3.252625 3.279578
## 1388 3.230123 3.213305 3.246942
## 1389 3.274894 3.268449 3.281338
## 1390 3.219186 3.211609 3.226763
## 1391 3.387442 3.377394 3.397490
## 1392 3.295123 3.285557 3.304689
## 1393 3.269984 3.261833 3.278136
## 1394 3.324316 3.317164 3.331467
## 1395 3.248823 3.239786 3.257860
## 1396 3.181461 3.170865 3.192056
## 1397 3.213305 3.205827 3.220783
## 1398 3.508110 3.499024 3.517195
## 1399 3.454532 3.446039 3.463024
## 1400 3.238110 3.231985 3.244236
## 1401 3.411600 3.401634 3.421565
## 1402 3.245813 3.239538 3.252088
## 1403 3.201796 3.193790 3.209803
## 1404 3.238155 3.230104 3.246206
## 1405 3.358020 3.349993 3.366047
## 1406 3.239241 3.231115 3.247368
## 1407 3.241306 3.235322 3.247291
## 1408 3.404291 3.394969 3.413614
## 1409 3.201742 3.195509 3.207975
## 1410 3.302536 3.294349 3.310722
## 1411 3.240912 3.234892 3.246932
## 1412 3.334866 3.326405 3.343326
## 1413 3.164481 3.153157 3.175806
## 1414 3.283330 3.270408 3.296252
## 1415 3.454459 3.445025 3.463893
## 1416 3.216959 3.209565 3.224353
## 1417 3.282531 3.269649 3.295413
## 1418 3.244210 3.235151 3.253269
## 1419 3.121030 3.112169 3.129892
## 1420 3.402470 3.393096 3.411843
## 1421 3.334427 3.326549 3.342305
## 1422 3.428671 3.420070 3.437273
## 1423 3.302312 3.293911 3.310712
## 1424 3.193389 3.181857 3.204921
## 1425 3.401112 3.392919 3.409305
## 1426 3.185679 3.174931 3.196428
## 1427 3.302144 3.293057 3.311231
## 1428 3.087102 3.078029 3.096175
## 1429 3.250133 3.241065 3.259202
## 1430 3.232983 3.226359 3.239607
## 1431 3.301541 3.284291 3.318790
## 1432 3.320214 3.313034 3.327394
## 1433 3.305039 3.296941 3.313138
## 1434 3.248096 3.241054 3.255137
## 1435 3.306286 3.298351 3.314221
## 1436 3.242852 3.235129 3.250575
## 1437 3.249683 3.242566 3.256800
## 1438 3.192722 3.175700 3.209744
## 1439 3.261608 3.253523 3.269694
## 1440 3.274768 3.266682 3.282854
## 1441 3.262077 3.254833 3.269321
## 1442 3.130374 3.121249 3.139498
## 1443 3.289596 3.275998 3.303195
## 1444 3.275737 3.267582 3.283893
## 1445 3.210103 3.192846 3.227360
## 1446 3.304752 3.296752 3.312752
## 1447 3.477393 3.467186 3.487600
## 1448 3.275285 3.268711 3.281859
## 1449 3.433370 3.423963 3.442776
## 1450 3.167108 3.156675 3.177541
## 1451 3.244268 3.238207 3.250329
## 1452 3.238632 3.232657 3.244607
## 1453 3.395829 3.387203 3.404454
## 1454 3.273719 3.260318 3.287121
## 1455 3.250457 3.239128 3.261785
## 1456 3.433945 3.424251 3.443639
## 1457 3.435649 3.426167 3.445132
## 1458 3.240166 3.234190 3.246143
## 1459 3.264866 3.258415 3.271316
## 1460 3.433266 3.422970 3.443561
## 1461 3.271567 3.264766 3.278368
## 1462 3.217077 3.209636 3.224517
## 1463 3.276196 3.266881 3.285512
## 1464 3.258377 3.249300 3.267453
## 1465 3.236810 3.230816 3.242805
## 1466 3.213710 3.206371 3.221049
## 1467 3.204037 3.189779 3.218295
## 1468 3.165903 3.156400 3.175406
## 1469 3.271401 3.263500 3.279303
## 1470 3.322826 3.314512 3.331140
## 1471 3.361310 3.345991 3.376628
## 1472 3.296562 3.287477 3.305646
## 1473 3.147067 3.134888 3.159247
## 1474 3.303675 3.295445 3.311906
## 1475 3.182601 3.171988 3.193213
## 1476 3.372939 3.365140 3.380739
## 1477 3.273628 3.265582 3.281674
## 1478 3.388423 3.373511 3.403334
## 1479 3.205045 3.198813 3.211277
## 1480 3.262919 3.254794 3.271043
## 1481 3.273240 3.266620 3.279859
## 1482 3.450766 3.435442 3.466089
## 1483 3.337146 3.328646 3.345646
## 1484 3.330662 3.319110 3.342214
## 1485 3.197715 3.186252 3.209177
## 1486 3.386451 3.370353 3.402549
## 1487 3.156314 3.145848 3.166779
## 1488 3.391234 3.375242 3.407227
## 1489 3.289892 3.277702 3.302082
## 1490 3.303729 3.295656 3.311802
## 1491 3.276131 3.268168 3.284095
## 1492 3.391701 3.376357 3.407045
## 1493 3.248599 3.239394 3.257804
## 1494 3.389493 3.375195 3.403791
## 1495 3.448770 3.439016 3.458524
## 1496 3.276079 3.266906 3.285253
## 1497 3.243533 3.237419 3.249647
## 1498 3.328990 3.315302 3.342678
## 1499 3.155515 3.145106 3.165924
## 1500 3.266722 3.258535 3.274908
## 1501 3.299851 3.291866 3.307836
## 1502 3.301790 3.293788 3.309792
## 1503 3.237270 3.229560 3.244979
## 1504 3.206082 3.198664 3.213500
## 1505 3.321837 3.304691 3.338984
## 1506 3.479852 3.462485 3.497218
## 1507 3.297018 3.286597 3.307438
## 1508 3.265377 3.258959 3.271795
## 1509 3.230596 3.223923 3.237270
## 1510 3.402861 3.386581 3.419142
# Generate a prediction for each row with broom
model_predictions_log <- broom::augment(final_model,
                             newdata = listings_predict_log, se_fit = TRUE)

model_predictions_log
idlisting_urlpriceguests_includedcleaning_feeextra_peopleprop_type_simplifiednumber_of_reviewsreview_scores_ratingroom_typebathroomsbedroomsbedsaccommodateshost_is_superhostis_location_exactneighbourhood_cleansedcancellation_policylongitudelatitudeprice_4_nightsprice_4_nights_logneighbourhood_simplified.fitted.se.fit.resid
6.98e+03https://www.airbnb.com/rooms/6983365       13366      Apartment16896Private room1  112FALSETRUENrrebromoderate12.555.71.76e+033.24Brokvarterer3.290.00628-0.0496  
4.91e+04https://www.airbnb.com/rooms/49122352       10210      Apartment18492Private room1  102FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.25e+033.35Center3.440.00705-0.0903  
6.59e+04https://www.airbnb.com/rooms/65902452       10100      Condominium9294Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.72.21e+033.34Brokvarterer3.310.005740.034   
1.43e+05https://www.airbnb.com/rooms/142599498       20100      Condominium95100Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer3.3 0.00591-0.00281 
1.77e+05https://www.airbnb.com/rooms/1769631e+03       2225300      Apartment36493Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.74.24e+033.63Brokvarterer3.3 0.0133 0.33    
1.86e+05https://www.airbnb.com/rooms/186454458       10100      Apartment18495Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.23e+033.35Brokvarterer3.310.006650.0406  
2.4e+05 https://www.airbnb.com/rooms/239705359       10250      Apartment15796Private room1  102TRUEFALSENrrebroflexible12.655.72.44e+033.39Brokvarterer3.3 0.005840.0916  
2.4e+05 https://www.airbnb.com/rooms/239818432       1066      Apartment5196Private room1  112FALSETRUEAmager Vestmoderate12.655.71.99e+033.3 Amager3.250.004050.0514  
2.58e+05https://www.airbnb.com/rooms/258430252       10100      Condominium27695Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.555.61.41e+033.15Brokvarterer3.260.0108 -0.112   
3.18e+05https://www.airbnb.com/rooms/318437379       100      Apartment6397Private room1  111TRUETRUENrrebroflexible12.655.71.52e+033.18Brokvarterer3.240.00418-0.0637  
3.27e+05https://www.airbnb.com/rooms/327286664       1166166      Apartment3897Private room0.5122FALSETRUEIndre Byflexible12.655.73.49e+033.54Center3.350.004660.191   
3.31e+05https://www.airbnb.com/rooms/330915359       11000      Apartment63792Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.54e+033.19Brokvarterer3.340.0226 -0.149   
3.39e+05https://www.airbnb.com/rooms/338992399       11000      Apartment40192Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.7e+03 3.23Brokvarterer3.3 0.014  -0.066   
3.39e+05https://www.airbnb.com/rooms/339139385       2100150      House11099Private room1  122TRUETRUEAmager Vestmoderate12.655.61.64e+033.21Amager3.310.00722-0.0953  
3.45e+05https://www.airbnb.com/rooms/345187485       166173      Apartment22493Private room1.5113FALSETRUEAmager stmoderate12.655.72.7e+03 3.43Amager3.340.008720.0951  
3.61e+05https://www.airbnb.com/rooms/360501651       12000      Apartment4798Private room1  112FALSETRUENrrebromoderate12.555.72.8e+03 3.45Brokvarterer3.280.0034 0.171   
3.64e+05https://www.airbnb.com/rooms/363722478       1200200      Apartment8291Private room1.5122FALSETRUEFrederiksbergmoderate12.655.72.91e+033.46Brokvarterer3.3 0.004430.164   
4.57e+05https://www.airbnb.com/rooms/456771598       100      Apartment2199Private room1  124TRUETRUEsterbrostrict_14_with_grace_period12.655.72.39e+033.38Brokvarterer3.390.00484-0.0145  
4.57e+05https://www.airbnb.com/rooms/456776405       100      Apartment23198Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.71.62e+033.21Brokvarterer3.360.00797-0.146   
5.15e+05https://www.airbnb.com/rooms/515344438       10100      Apartment9099Private room1  112TRUETRUENrrebromoderate12.655.72.15e+033.33Brokvarterer3.310.004330.0184  
5.22e+05https://www.airbnb.com/rooms/521856392       1100225      Apartment25397Private room1  102TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.57e+033.41Brokvarterer3.360.008670.0512  
5.54e+05https://www.airbnb.com/rooms/553888352       2100100      Apartment6794Private room1  112TRUETRUENrrebromoderate12.555.71.51e+033.18Brokvarterer3.3 0.00411-0.126   
5.6e+05 https://www.airbnb.com/rooms/559944897       100      Apartment5395Private room  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.73.59e+033.55Brokvarterer                
5.66e+05https://www.airbnb.com/rooms/566317392       1250200      Apartment8390Private room1  011FALSETRUENrrebromoderate12.655.72.62e+033.42Brokvarterer3.190.004160.227   
5.99e+05https://www.airbnb.com/rooms/5989162e+03       1200200      Condominium10991Private room1.5132FALSETRUEFrederiksbergmoderate12.655.79e+03       3.95Brokvarterer3.320.006280.637   
6.05e+05https://www.airbnb.com/rooms/605386452       220050      Apartment7296Private room1  113TRUETRUENrrebrostrict_14_with_grace_period12.655.72.01e+033.3 Brokvarterer3.360.00437-0.0594  
6.23e+05https://www.airbnb.com/rooms/623404399       1100199      Apartment11498Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.49e+033.4 Brokvarterer3.320.004720.0793  
6.31e+05https://www.airbnb.com/rooms/630572452       100      Apartment5399Private room1  111FALSETRUEAmager ststrict_14_with_grace_period12.655.71.81e+033.26Amager3.230.004440.0222  
6.45e+05https://www.airbnb.com/rooms/645357751       2400250      Apartment10896Private room1  222TRUETRUEIndre Byflexible12.655.73.4e+03 3.53Center3.460.005550.0684  
6.51e+05https://www.airbnb.com/rooms/650825272       140110      Apartment14596Private room1  111TRUETRUEValbymoderate12.555.71.57e+033.2 West3.180.007  0.0185  
6.56e+05https://www.airbnb.com/rooms/656319399       1200200      Apartment2297Private room1  111FALSETRUEAmager Vestflexible12.655.72.6e+03 3.41Amager3.180.0039 0.233   
6.57e+05https://www.airbnb.com/rooms/657356505       2100250      Other23992Private room1.5123FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.12e+033.33Brokvarterer3.460.011  -0.13    
6.64e+05https://www.airbnb.com/rooms/663859498       12910      Apartment4697Private room1  222FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.72.28e+033.36Brokvarterer3.340.004070.0193  
6.7e+05 https://www.airbnb.com/rooms/670384511       1298186      Apartment12795Private room2  113TRUETRUEAmager Vestmoderate12.655.73.09e+033.49Amager3.380.006880.111   
6.82e+05https://www.airbnb.com/rooms/681827498       20150      Condominium16795Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer3.350.0071 -0.0542  
7.69e+05https://www.airbnb.com/rooms/768784697       2300200      Apartment8798Private room1  124FALSETRUEAmager Vestmoderate12.655.63.09e+033.49Amager3.330.005110.161   
7.69e+05https://www.airbnb.com/rooms/768831452       1200150      Other6199Private room1  113FALSETRUEAmager Vestflexible12.655.62.61e+033.42Amager3.340.007980.0804  
8.13e+05https://www.airbnb.com/rooms/813233558       110090      Apartment21795Private room1  112FALSETRUENrrebromoderate12.655.72.69e+033.43Brokvarterer3.3 0.007890.129   
8.22e+05https://www.airbnb.com/rooms/821817498       100      Apartment21100Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer3.290.003560.00593 
8.28e+05https://www.airbnb.com/rooms/828245206       160119      Apartment5696Private room1  112FALSETRUEFrederiksbergflexible12.555.71.36e+033.13Brokvarterer3.250.00338-0.115   
8.41e+05https://www.airbnb.com/rooms/840903399       1180100      Apartment31897Private room1  111TRUEFALSEAmager Vestmoderate12.655.72.18e+033.34Amager3.290.0112 0.0495  
8.57e+05https://www.airbnb.com/rooms/856706578       1125150      Apartment17193Private room1  224TRUEFALSEFrederiksbergmoderate12.655.73.04e+033.48Brokvarterer3.440.006340.0447  
8.64e+05https://www.airbnb.com/rooms/864049452       1150125      Apartment8798Private room1  112TRUEFALSEsterbromoderate12.655.72.46e+033.39Brokvarterer3.310.004280.0779  
8.77e+05https://www.airbnb.com/rooms/876975392       19090      Apartment27693Private room1  112FALSETRUENrrebromoderate12.655.72.02e+033.3 Brokvarterer3.310.00993-0.00398 
8.8e+05 https://www.airbnb.com/rooms/879765598       14000      Other3094Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.79e+033.45Brokvarterer3.360.007760.0855  
8.85e+05https://www.airbnb.com/rooms/885261485       100      Apartment9097Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.71.94e+033.29Center3.460.00487-0.174   
9.1e+05 https://www.airbnb.com/rooms/9098061.05e+03200      Apartment3696Private room1  132FALSETRUEAmager stmoderate12.655.74.2e+03 3.62Amager3.250.003940.378   
9.23e+05https://www.airbnb.com/rooms/923152425       10100      Apartment9493Private room1.5111FALSETRUEIndre Bymoderate12.655.72.1e+03 3.32Center3.4 0.00531-0.0778  
9.35e+05https://www.airbnb.com/rooms/935427698       11000      Condominium4396Private room1  102FALSETRUEAmager Vestmoderate12.655.72.89e+033.46Amager3.260.005510.202   
9.49e+05https://www.airbnb.com/rooms/948953697       20200      Other1096Private room1  102TRUETRUEValbyflexible12.555.72.79e+033.45West3.240.008780.209   
9.49e+05https://www.airbnb.com/rooms/948955598       100      Other4696Private room1  102TRUETRUEValbyflexible12.555.72.39e+033.38West3.240.008670.136   
9.56e+05https://www.airbnb.com/rooms/956091359       1155150      Apartment9498Private room1  111TRUETRUEAmager Vestmoderate12.655.62.19e+033.34Amager3.250.005030.0894  
9.79e+05https://www.airbnb.com/rooms/979445452       215090      Other9391Private room1  114FALSETRUEVanlsemoderate12.555.71.96e+033.29Nordvest3.3 0.00882-0.0121  
1.01e+06https://www.airbnb.com/rooms/1014714498       300      Condominium1092Private room1.5101FALSETRUEFrederiksbergmoderate12.555.71.99e+033.3 Brokvarterer3.270.005660.034   
1.03e+06https://www.airbnb.com/rooms/1025486452       1100200      Townhouse13897Private room1  122TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.71e+033.43Brokvarterer3.350.009330.0814  
1.03e+06https://www.airbnb.com/rooms/1033496425       100      Apartment17094Private room1  112TRUETRUENrrebroflexible12.655.71.7e+03 3.23Brokvarterer3.290.00621-0.0642  
1.03e+06https://www.airbnb.com/rooms/1033553472       11000      Apartment5799Private room1  102TRUETRUENrrebrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer3.330.00419-0.0292  
1.03e+06https://www.airbnb.com/rooms/1033676498       11000      Apartment11396Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.09e+033.32Brokvarterer3.330.00479-0.0127  
1.04e+06https://www.airbnb.com/rooms/1040910485       100      Apartment8799Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.61.94e+033.29Brokvarterer3.290.004340.000761
1.07e+06https://www.airbnb.com/rooms/1069482565       10250      Apartment20597Private room1  111TRUEFALSEIndre Bymoderate12.655.73.26e+033.51Center3.430.007390.0862  
1.09e+06https://www.airbnb.com/rooms/1093642332       27537      House4293Private room1  112FALSETRUEValbyflexible12.555.71.4e+03 3.15West3.150.00675-0.00681 
1.1e+06 https://www.airbnb.com/rooms/1102901498       1150250      Apartment11495Private room1  011FALSETRUEIndre Bymoderate12.655.73.14e+033.5 Center3.330.005320.163   
1.14e+06https://www.airbnb.com/rooms/1143614498       11000      Apartment4797Private room1  102TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.09e+033.32Brokvarterer3.320.00416-0.00271 
1.17e+06https://www.airbnb.com/rooms/1167176498       11500      Apartment3095Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.72.14e+033.33Brokvarterer3.3 0.0041 0.0318  
1.19e+06https://www.airbnb.com/rooms/1194269352       12500      Apartment16100Private room1  222FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.66e+033.22Brokvarterer3.340.00405-0.118   
1.2e+06 https://www.airbnb.com/rooms/1200614399       110090      House5294Private room1  111TRUETRUEAmager Vestflexible12.655.62.06e+033.31Amager3.230.006950.0821  
1.22e+06https://www.airbnb.com/rooms/1218328498       100      Apartment19196Private room1  112FALSETRUENrrebroflexible12.655.71.99e+033.3 Brokvarterer3.270.007150.0279  
1.22e+06https://www.airbnb.com/rooms/1220002452       1150200      Apartment20298Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.72.76e+033.44Center3.480.00721-0.0419  
1.23e+06https://www.airbnb.com/rooms/1227230751       1150100      Apartment1692Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.55e+033.55Center3.410.004240.137   
1.25e+06https://www.airbnb.com/rooms/1248120797       1385150      Apartment3592Private room1.5113FALSETRUEAmager Vestmoderate12.655.74.17e+033.62Amager3.3 0.004510.318   
1.3e+06 https://www.airbnb.com/rooms/1301296292       14000      Apartment1193Private room1  111FALSEFALSENrrebrostrict_14_with_grace_period12.655.71.57e+033.2 Brokvarterer3.250.00362-0.0512  
1.3e+06 https://www.airbnb.com/rooms/1302945352       2200100      Apartment6196Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.61e+033.21Brokvarterer3.290.0037 -0.0887  
1.31e+06https://www.airbnb.com/rooms/1305915352       10200      House7298Private room1  223FALSEFALSEVesterbro-Kongens Enghavemoderate12.555.62.21e+033.34Brokvarterer3.380.00659-0.037   
1.33e+06https://www.airbnb.com/rooms/1325512498       130050      Apartment1798Private room1  112FALSETRUENrrebromoderate12.555.72.49e+033.4 Brokvarterer3.270.0033 0.125   
1.37e+06https://www.airbnb.com/rooms/1369531525       1100250      Townhouse4295Private room1.5111TRUETRUEAmager Vestmoderate12.655.73.2e+03 3.51Amager3.280.008580.228   
1.38e+06https://www.airbnb.com/rooms/1377311498       11500      Condominium13794Private room1.5112FALSEFALSENrrebromoderate12.555.72.14e+033.33Brokvarterer3.330.006820.00534 
1.38e+06https://www.airbnb.com/rooms/1380790252       1250150      Apartment2693Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.86e+033.27Brokvarterer3.270.003250.00276 
1.4e+06 https://www.airbnb.com/rooms/1398989452       1250100      Apartment6097Private room1  111TRUEFALSENrrebrostrict_14_with_grace_period12.655.72.46e+033.39Brokvarterer3.290.004320.101   
1.42e+06https://www.airbnb.com/rooms/1423825618       100      Apartment14097Private room1  112TRUETRUEIndre Byflexible12.655.72.47e+033.39Center3.420.00573-0.0319  
1.44e+06https://www.airbnb.com/rooms/1442435252       1100100      Apartment3293Private room1  101TRUEFALSEValbyflexible12.555.71.51e+033.18West3.130.005820.0517  
1.46e+06https://www.airbnb.com/rooms/1455294751       3100400      Apartment9591Private room1  103FALSEFALSEIndre Byflexible12.655.73.1e+03 3.49Center3.420.004860.076   
1.46e+06https://www.airbnb.com/rooms/1457864325       12000      Apartment16191Private room1  112FALSETRUEIndre Byflexible12.655.71.5e+03 3.18Center3.390.00644-0.215   
1.47e+06https://www.airbnb.com/rooms/1471084372       1300140      Apartment3093Private room1  112FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.72.35e+033.37Brokvarterer3.290.003440.085   
1.54e+06https://www.airbnb.com/rooms/1541680445       111275      Apartment34998Private room1  112TRUETRUEsterbromoderate12.655.72.19e+033.34Brokvarterer3.360.0119 -0.0165  
1.54e+06https://www.airbnb.com/rooms/1544061425       1175140      Apartment5495Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.44e+033.39Brokvarterer3.240.003570.149   
1.55e+06https://www.airbnb.com/rooms/1546617379       11000      Apartment2397Private room1  111FALSETRUEAmager Vestmoderate12.655.71.62e+033.21Amager3.210.00405-2.42e-05
1.56e+06https://www.airbnb.com/rooms/1557373624       100      Apartment41395Private room1  112TRUETRUEIndre Bymoderate12.655.72.5e+03 3.4 Center3.5 0.0141 -0.0985  
1.56e+06https://www.airbnb.com/rooms/1563229452       15050      Apartment3199Private room1.5112TRUETRUENrrebromoderate12.555.72.06e+033.31Brokvarterer3.330.00456-0.0175  
1.58e+06https://www.airbnb.com/rooms/1577506299       100      Apartment8098Private room1  111FALSEFALSEsterbroflexible12.655.71.2e+03 3.08Brokvarterer3.220.004  -0.141   
1.59e+06https://www.airbnb.com/rooms/1591147445       1261224      Apartment21297Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.94e+033.47Brokvarterer3.350.007370.117   
1.61e+06https://www.airbnb.com/rooms/1613987332       240150      Apartment11590Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.37e+033.14Brokvarterer3.250.00474-0.115   
1.62e+06https://www.airbnb.com/rooms/1621001664       1332332      Apartment3498Private room1  112TRUEFALSEAmager Vestmoderate12.655.74.32e+033.64Amager3.280.0046 0.358   
1.69e+06https://www.airbnb.com/rooms/1685324452       100      Apartment10096Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.81e+033.26Brokvarterer3.280.0046 -0.0191  
1.74e+06https://www.airbnb.com/rooms/1740273399       13000      Apartment6795Private room1  112TRUETRUEBispebjergflexible12.555.71.9e+03 3.28Nordvest3.160.005340.116   
1.74e+06https://www.airbnb.com/rooms/1742116598       10500      Townhouse1198Private room1  111TRUETRUEFrederiksbergflexible12.555.74.39e+033.64Brokvarterer3.250.008750.393   
1.8e+06 https://www.airbnb.com/rooms/1802389399       20200      Apartment5995Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.6e+03 3.2 Brokvarterer3.270.00349-0.0715  
1.81e+06https://www.airbnb.com/rooms/1806840498       1150100      Apartment13898Private room1.5202TRUEFALSEIndre Bymoderate12.655.72.54e+033.41Center3.520.00622-0.12    
1.81e+06https://www.airbnb.com/rooms/1810626392       100      Apartment7293Private room1  111TRUEFALSEAmager stflexible12.655.71.57e+033.2 Amager3.210.00482-0.0187  
1.87e+06https://www.airbnb.com/rooms/1866847452       2500      Apartment10097Private room1  122FALSEFALSEFrederiksbergmoderate12.555.71.86e+033.27Brokvarterer3.280.00433-0.0151  
1.92e+06https://www.airbnb.com/rooms/1917329498       12000      Condominium4397Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.19e+033.34Brokvarterer3.330.005680.00586 
1.93e+06https://www.airbnb.com/rooms/1932744498       12000      Apartment5299Private room1  112FALSETRUENrrebromoderate12.655.72.19e+033.34Brokvarterer3.280.003480.0623  
1.95e+06https://www.airbnb.com/rooms/1945602345       10100      House3899Private room1  112TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.78e+033.25Nordvest3.230.007460.0236  
2.01e+06https://www.airbnb.com/rooms/2007532299       1200100      Condominium5693Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.8e+03 3.25Amager3.280.00572-0.0216  
2.02e+06https://www.airbnb.com/rooms/2017914379       17597      Apartment27693Private room1  223TRUEFALSENrrebrostrict_14_with_grace_period12.655.71.98e+033.3 Brokvarterer3.440.00957-0.142   
2.02e+06https://www.airbnb.com/rooms/2019104551       11000      Apartment2494Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.3e+03 3.36Brokvarterer3.290.003440.0765  
2.09e+06https://www.airbnb.com/rooms/2085203239       1249109      Apartment8796Private room1  112FALSETRUEValbymoderate12.555.71.64e+033.22West3.170.005810.0417  
2.14e+06https://www.airbnb.com/rooms/2143694399       100      Apartment6194Private room1  112FALSETRUEAmager stmoderate12.655.71.6e+03 3.2 Amager3.250.00415-0.0439  
2.15e+06https://www.airbnb.com/rooms/2152286412       1400100      Apartment4996Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.45e+033.39Center3.420.00426-0.0355  
2.24e+06https://www.airbnb.com/rooms/2236203651       20100      Apartment3794Private room1  112TRUETRUEAmager Vestflexible12.655.72.6e+03 3.42Amager3.250.004530.17    
2.27e+06https://www.airbnb.com/rooms/2266880326       2100100      Apartment2494Private room1  112FALSEFALSENrrebromoderate12.555.71.4e+03 3.15Brokvarterer3.270.00325-0.12    
2.27e+06https://www.airbnb.com/rooms/2271424498       150450      Apartment63100Private room1  113FALSETRUENrrebromoderate12.655.73.84e+033.58Brokvarterer3.320.003850.267   
2.28e+06https://www.airbnb.com/rooms/2275416399       110090      House3495Private room1  112TRUETRUEAmager Vestflexible12.655.62.06e+033.31Amager3.270.006820.048   
2.34e+06https://www.airbnb.com/rooms/2342778279       1200100      Apartment10796Private room1  112TRUETRUEFrederiksbergmoderate12.655.71.72e+033.23Brokvarterer3.310.00458-0.0789  
2.37e+06https://www.airbnb.com/rooms/2365927452       41250      Apartment8193Private room1  112TRUETRUEAmager Vestmoderate12.655.71.93e+033.29Amager3.280.004770.00779 
2.37e+06https://www.airbnb.com/rooms/2371616299       100      Apartment1090Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.2e+03 3.08Brokvarterer3.280.00354-0.201   
2.38e+06https://www.airbnb.com/rooms/2382240352       12500      Apartment3598Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.66e+033.22Brokvarterer3.270.00332-0.0548  
2.46e+06https://www.airbnb.com/rooms/2459663299       100      Apartment12496Private room1  112TRUETRUEAmager Vestflexible12.655.71.2e+03 3.08Amager3.260.00548-0.185   
2.49e+06https://www.airbnb.com/rooms/2487940598       1330330      Apartment1597Private room1  112FALSETRUENrrebromoderate12.655.74.04e+033.61Brokvarterer3.270.003290.337   
2.5e+06 https://www.airbnb.com/rooms/2499542498       12500      Apartment45198Private room1  112TRUEFALSEIndre Bymoderate12.655.72.24e+033.35Center3.510.0155 -0.156   
2.51e+06https://www.airbnb.com/rooms/2508408551       2300200      Apartment3396Private room1  123FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.5e+03 3.4 Center3.460.00433-0.0589  
2.54e+06https://www.airbnb.com/rooms/2541947498       2200200      Apartment12692Private room1  112TRUEFALSEVesterbro-Kongens Enghaveflexible12.655.72.19e+033.34Brokvarterer3.280.005090.0563  
2.57e+06https://www.airbnb.com/rooms/2568775498       1500      Apartment9196Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.04e+033.31Brokvarterer3.280.0041 0.0288  
2.59e+06https://www.airbnb.com/rooms/2592713312       1150150      Apartment8592Private room1  112FALSETRUEsterbromoderate12.655.72e+03       3.3 Brokvarterer3.280.003970.0256  
2.64e+06https://www.airbnb.com/rooms/2642090399       15252      Apartment3399Private room1.5112TRUETRUENrrebromoderate12.555.71.86e+033.27Brokvarterer3.330.00455-0.0628  
2.65e+06https://www.airbnb.com/rooms/2647233598       220080      Apartment32993Private room1  123FALSETRUEFrederiksbergmoderate12.555.72.59e+033.41Brokvarterer3.350.0118 0.0598  
2.67e+06https://www.airbnb.com/rooms/2667270498       10100      Apartment10399Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.39e+033.38Brokvarterer3.340.004640.0433  
2.71e+06https://www.airbnb.com/rooms/2708639299       11000      Apartment1494Private room1  111FALSEFALSEFrederiksbergmoderate12.555.71.3e+03 3.11Brokvarterer3.230.0034 -0.117   
2.73e+06https://www.airbnb.com/rooms/2728538452       2150100      House2393Private room1  111FALSETRUEFrederiksbergflexible12.555.71.96e+033.29Brokvarterer3.220.006450.0699  
2.77e+06https://www.airbnb.com/rooms/2766765252       100      Apartment8995Private room0.5101FALSETRUEVanlsemoderate12.555.71.01e+033   Nordvest3.1 0.00587-0.0972  
2.78e+06https://www.airbnb.com/rooms/2777426545       100      House11798Private room1  102TRUEFALSEVesterbro-Kongens Enghaveflexible12.555.62.18e+033.34Brokvarterer3.310.007390.0287  
2.78e+06https://www.airbnb.com/rooms/2777681352       23000      Apartment6699Private room1  112TRUETRUENrrebromoderate12.555.71.71e+033.23Brokvarterer3.310.0041 -0.0779  
2.8e+06 https://www.airbnb.com/rooms/2801086325       2125125      House9395Private room1  112TRUETRUEVanlsemoderate12.555.71.42e+033.15Nordvest3.210.00755-0.0584  
2.81e+06https://www.airbnb.com/rooms/2808956279       1100199      Apartment5198Private room1  111TRUEFALSENrrebromoderate12.555.72.01e+033.3 Brokvarterer3.270.004160.033   
2.82e+06https://www.airbnb.com/rooms/2824743352       1500      Apartment2390Private room2  111FALSEFALSEsterbromoderate12.655.71.46e+033.16Brokvarterer3.280.00554-0.115   
2.83e+06https://www.airbnb.com/rooms/2826469425       1253201      Apartment10100Private room1  112FALSETRUEIndre Bymoderate12.655.72.76e+033.44Center3.4 0.004280.0362  
2.83e+06https://www.airbnb.com/rooms/2834713299       11000      House1293Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.3e+03 3.11West3.160.00708-0.0459  
2.84e+06https://www.airbnb.com/rooms/2844814498       30100      House1893Private room1  133FALSETRUEValbyflexible12.555.71.99e+033.3 West3.190.006730.114   
2.89e+06https://www.airbnb.com/rooms/2891048492       100      Apartment1096Private room1  112FALSETRUEIndre Byflexible12.655.71.97e+033.29Center3.370.00403-0.078   
2.91e+06https://www.airbnb.com/rooms/2905934764       110050      Condominium1892Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.73.36e+033.53Brokvarterer3.290.005260.231   
2.92e+06https://www.airbnb.com/rooms/2916891432       2050      Apartment6594Private room1  212FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.73e+033.24Brokvarterer3.340.00425-0.101   
2.94e+06https://www.airbnb.com/rooms/2937773498       100      Apartment4195Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer3.240.003170.0547  
2.95e+06https://www.airbnb.com/rooms/2946481412       17575      Apartment14593Private room1  112TRUETRUEAmager Vestmoderate12.655.72.02e+033.31Amager3.290.005870.0166  
3.04e+06https://www.airbnb.com/rooms/3036965252       1150150      Apartment5897Private room0.5102FALSETRUEAmager stflexible12.655.71.76e+033.25Amager3.2 0.004660.0482  
3.11e+06https://www.airbnb.com/rooms/3105546332       12240      Other6796Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.61.55e+033.19Brokvarterer3.380.00796-0.189   
3.14e+06https://www.airbnb.com/rooms/3141745239       2050      Apartment1098Private room1  102FALSETRUEBispebjergflexible12.555.7956       2.98Nordvest3.130.00459-0.146   
3.14e+06https://www.airbnb.com/rooms/3144558359       11490      Condominium6499Private room1  111TRUETRUEsterbromoderate12.655.71.58e+033.2 Brokvarterer3.290.00569-0.0865  
3.15e+06https://www.airbnb.com/rooms/3145494279       112070      Apartment21998Private room1  112TRUETRUEIndre Byflexible12.655.71.52e+033.18Center3.440.00786-0.259   
3.2e+06 https://www.airbnb.com/rooms/3199820372       100      Apartment21897Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.49e+033.17Brokvarterer3.270.00777-0.0982  
3.21e+06https://www.airbnb.com/rooms/3207575299       110050      Apartment2790Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.5e+03 3.17Brokvarterer3.280.00349-0.106   
3.25e+06https://www.airbnb.com/rooms/3245019352       1300      Apartment22198Private room1  111TRUEFALSEAmager stmoderate12.655.71.44e+033.16Amager3.270.00805-0.115   
3.25e+06https://www.airbnb.com/rooms/3249158352       11000      Apartment1795Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.51e+033.18Brokvarterer3.250.00359-0.0718  
3.26e+06https://www.airbnb.com/rooms/3255922399       11000      Apartment2897Private room1  112FALSETRUEIndre Bymoderate12.655.71.7e+03 3.23Center3.4 0.00414-0.174   
3.26e+06https://www.airbnb.com/rooms/3261996399       100      Other1196Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.6e+03 3.2 West3.210.00839-0.00397 
3.27e+06https://www.airbnb.com/rooms/3266326399       100      House2694Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.6e+03 3.2 West3.150.006690.0506  
3.27e+06https://www.airbnb.com/rooms/3268999412       14470      Apartment1692Private room0.5112FALSEFALSEIndre Bystrict_14_with_grace_period12.655.72.1e+03 3.32Center3.390.00486-0.0657  
3.28e+06https://www.airbnb.com/rooms/3275063352       1050      Apartment3296Private room1  112FALSETRUENrrebroflexible12.655.71.61e+033.21Brokvarterer3.240.00311-0.038   
3.32e+06https://www.airbnb.com/rooms/3316790379       1100200      Apartment2191Private room1.5112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.42e+033.38Brokvarterer3.310.004010.075   
3.32e+06https://www.airbnb.com/rooms/3323785498       11500      Apartment7692Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.14e+033.33Center3.420.00451-0.0929  
3.33e+06https://www.airbnb.com/rooms/33285871.88e+0320319      Other8893Private room1  142FALSEFALSEAmager stflexible12.655.77.52e+033.88Amager3.3 0.008130.579   
3.34e+06https://www.airbnb.com/rooms/3336629392       100      House18495Private room1.5111FALSETRUEIndre Byflexible12.655.71.57e+033.2 Center3.410.00916-0.215   
3.34e+06https://www.airbnb.com/rooms/3341972399       2120100      Apartment2796Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.72e+033.23Brokvarterer3.290.00345-0.0546  
3.36e+06https://www.airbnb.com/rooms/3357093299       10100      Apartment9994Private room1.5112FALSETRUEAmager Vestflexible12.655.71.6e+03 3.2 Amager3.250.00526-0.05    
3.36e+06https://www.airbnb.com/rooms/3364839252       415045      Apartment1593Private room1  121FALSEFALSEBispebjergmoderate12.555.71.16e+033.06Nordvest3.110.00481-0.0483  
3.37e+06https://www.airbnb.com/rooms/3366023412       100      Apartment2092Private room1  112FALSETRUEAmager Vestflexible12.655.71.65e+033.22Amager3.210.003740.00655 
3.38e+06https://www.airbnb.com/rooms/3377489551       270250      Apartment2897Private room1  133FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.27e+033.36Brokvarterer3.280.003350.0759  
3.38e+06https://www.airbnb.com/rooms/3382865438       1250100      Apartment24698Private room1  112TRUETRUEIndre Bymoderate12.655.72.4e+03 3.38Center3.470.00851-0.0906  
3.39e+06https://www.airbnb.com/rooms/3388899266       111050      Apartment13796Private room1  112TRUETRUEBrnshj-Husumflexible12.555.71.37e+033.14West3.180.00678-0.0465  
3.45e+06https://www.airbnb.com/rooms/3450902332       27575      House2598Private room1  112FALSETRUEValbyflexible12.555.71.4e+03 3.15West3.160.00673-0.0105  
3.48e+06https://www.airbnb.com/rooms/3482608332       100      Apartment4294Private room1  111FALSETRUENrrebroflexible12.655.71.33e+033.12Brokvarterer3.210.00331-0.0843  
3.53e+06https://www.airbnb.com/rooms/3530784359       2149186      Apartment5192Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.58e+033.2 Brokvarterer3.290.00358-0.088   
3.56e+06https://www.airbnb.com/rooms/3560024452       21800      Apartment29891Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.99e+033.3 Brokvarterer3.310.0107 -0.0116  
3.56e+06https://www.airbnb.com/rooms/3562831312       2150150      Apartment14798Private room1  124TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.4e+03 3.15Brokvarterer3.390.00586-0.249   
3.57e+06https://www.airbnb.com/rooms/3570192352       20150      House1699Private room1  122TRUETRUEBrnshj-Husummoderate12.555.71.41e+033.15West3.210.00733-0.065   
3.6e+06 https://www.airbnb.com/rooms/3598715299       200      Apartment10696Private room1.5112TRUETRUENrrebromoderate12.555.71.2e+03 3.08Brokvarterer3.340.00501-0.262   
3.64e+06https://www.airbnb.com/rooms/3637065286       11000      Apartment8495Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.24e+033.09Brokvarterer3.240.00407-0.148   
3.66e+06https://www.airbnb.com/rooms/3658168226       21200      Apartment3797Private room1  112FALSETRUEBispebjergmoderate12.555.71.02e+033.01Nordvest3.160.00477-0.147   
3.68e+06https://www.airbnb.com/rooms/3678040399       1150200      Apartment2792Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.55e+033.41Brokvarterer3.270.003270.141   
3.69e+06https://www.airbnb.com/rooms/3685353697       1150400      Apartment1495Private room1  111FALSETRUEFrederiksbergmoderate12.555.74.54e+033.66Brokvarterer3.230.0034 0.426   
3.72e+06https://www.airbnb.com/rooms/37227451.05e+0320499      House16692Private room1  134FALSEFALSEAmager stflexible12.655.74.2e+03 3.62Amager3.330.008580.297   
3.74e+06https://www.airbnb.com/rooms/3740236850       21000      Apartment4692Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.73.5e+03 3.54Brokvarterer3.290.003530.257   
3.78e+06https://www.airbnb.com/rooms/3779896551       2150200      Apartment7393Private room1  122TRUETRUEAmager Vestmoderate12.655.72.35e+033.37Amager3.280.0047 0.0947  
3.78e+06https://www.airbnb.com/rooms/3781035498       11000      Apartment24297Private room1.5102TRUETRUEIndre Bymoderate12.655.72.09e+033.32Center3.5 0.00862-0.175   
3.85e+06https://www.airbnb.com/rooms/38471182.3e+03 120090      Apartment2192Private room1  112FALSETRUEBispebjergmoderate12.555.79.75e+033.99Nordvest3.150.0047 0.841   
3.88e+06https://www.airbnb.com/rooms/3880972299       1600      Apartment15090Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.655.71.26e+033.1 Brokvarterer3.3 0.00581-0.203   
3.89e+06https://www.airbnb.com/rooms/3891991299       12000      Apartment2793Private room1  102FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.4e+03 3.14Brokvarterer3.240.00306-0.0947  
3.9e+06 https://www.airbnb.com/rooms/3900575392       1195295      Apartment2497Private room1  111FALSEFALSEFrederiksbergmoderate12.555.72.94e+033.47Brokvarterer3.240.003390.234   
3.91e+06https://www.airbnb.com/rooms/3911851525       21500      Apartment20695Private room1  102TRUETRUENrrebrostrict_14_with_grace_period12.655.72.25e+033.35Brokvarterer3.350.007180.00443 
3.93e+06https://www.airbnb.com/rooms/3928206352       100      Apartment1793Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.41e+033.15Brokvarterer3.240.00305-0.0892  
3.95e+06https://www.airbnb.com/rooms/3945149372       21500      Townhouse11595Private room1.5112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.64e+033.21Amager3.320.00897-0.101   
3.95e+06https://www.airbnb.com/rooms/3949538498       22000      Apartment8097Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.19e+033.34Amager3.3 0.004850.0386  
3.96e+06https://www.airbnb.com/rooms/3960092897       2150200      Apartment3696Private room1  103FALSEFALSEAmager Veststrict_14_with_grace_period12.655.73.74e+033.57Amager3.3 0.004260.273   
3.96e+06https://www.airbnb.com/rooms/3960971299       2150100      Condominium4292Private room1  112FALSETRUEValbymoderate12.555.71.35e+033.13West3.170.00655-0.0439  
3.98e+06https://www.airbnb.com/rooms/3977491399       1150100      Apartment4092Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.15e+033.33Brokvarterer3.290.003490.0455  
3.98e+06https://www.airbnb.com/rooms/3980777372       1150125      Apartment3794Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.14e+033.33Brokvarterer3.290.003460.0418  
4.02e+06https://www.airbnb.com/rooms/4019068498       4100100      Apartment1997Private room1.5112FALSETRUEBispebjergflexible12.555.72.09e+033.32Nordvest3.150.005010.167   
4.02e+06https://www.airbnb.com/rooms/4024293525       1200150      Apartment1191Private room1  123FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.9e+03 3.46Brokvarterer3.320.003690.147   
4.06e+06https://www.airbnb.com/rooms/4055799292       11000      House1998Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.27e+033.1 West3.170.0071 -0.0631  
4.08e+06https://www.airbnb.com/rooms/4078887392       100      Apartment5696Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.57e+033.2 Brokvarterer3.280.00346-0.08    
4.09e+06https://www.airbnb.com/rooms/4086966352       100      Apartment6197Private room1  111FALSETRUEFrederiksbergflexible12.555.71.41e+033.15Brokvarterer3.210.0036 -0.0661  
4.11e+06https://www.airbnb.com/rooms/4113742598       1250250      Apartment2796Private room1  112FALSETRUEFrederiksbergflexible12.555.73.64e+033.56Brokvarterer3.240.003080.318   
4.13e+06https://www.airbnb.com/rooms/4132033372       11500      Apartment3893Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.64e+033.21Brokvarterer3.250.00363-0.0369  
4.14e+06https://www.airbnb.com/rooms/4139642365       11500      Apartment19593Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.61e+033.21Brokvarterer3.310.00698-0.101   
4.14e+06https://www.airbnb.com/rooms/4141548352       1600100      Apartment2098Private room0.5112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.41e+033.38Brokvarterer3.260.0042 0.118   
4.16e+06https://www.airbnb.com/rooms/4155326498       100      Apartment11596Private room1  112FALSEFALSEIndre Bymoderate12.655.71.99e+033.3 Center3.420.00518-0.118   
4.23e+06https://www.airbnb.com/rooms/4228882498       1800      Apartment3897Private room1  102TRUETRUEValbymoderate12.555.72.07e+033.32West3.2 0.005790.121   
4.23e+06https://www.airbnb.com/rooms/4229857299       1150100      Apartment6093Private room1  112FALSEFALSEBispebjergmoderate12.555.71.75e+033.24Nordvest3.160.004920.0864  
4.23e+06https://www.airbnb.com/rooms/4234463266       132110      Apartment3997Private room1  111FALSETRUEsterbromoderate12.655.71.54e+033.19Brokvarterer3.240.00345-0.0514  
4.24e+06https://www.airbnb.com/rooms/4237920272       110050      Apartment1093Private room0.5112FALSETRUEBispebjergmoderate12.555.71.39e+033.14Nordvest3.120.005230.0219  
4.28e+06https://www.airbnb.com/rooms/4276029399       11000      Apartment1395Private room1  112FALSETRUEsterbroflexible12.655.71.7e+03 3.23Brokvarterer3.240.00306-0.0103  
4.35e+06https://www.airbnb.com/rooms/4353943598       1500      Apartment3096Private room1  112FALSETRUEIndre Byflexible12.655.72.44e+033.39Center3.380.004  0.0123  
4.37e+06https://www.airbnb.com/rooms/4365371279       11000      House1995Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.22e+033.08West3.160.00708-0.0774  
4.38e+06https://www.airbnb.com/rooms/4376719578       11500      Apartment10797Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.46e+033.39Brokvarterer3.3 0.004630.0872  
4.39e+06https://www.airbnb.com/rooms/4385902525       1240125      Apartment1096Private room1  112FALSETRUENrrebromoderate12.655.72.84e+033.45Brokvarterer3.270.0033 0.186   
4.4e+06 https://www.airbnb.com/rooms/4399266478       11500      Apartment6697Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.06e+033.31Brokvarterer3.330.00421-0.0122  
4.41e+06https://www.airbnb.com/rooms/4413881399       100      Apartment1398Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.6e+03 3.2 Brokvarterer3.270.00332-0.0676  
4.42e+06https://www.airbnb.com/rooms/4420277698       23000      Apartment5497Private room1  113FALSETRUEAmager Vestmoderate12.655.73.09e+033.49Amager3.290.004250.205   
4.44e+06https://www.airbnb.com/rooms/4441339173       1350100      House2395Private room1  111FALSETRUEVanlsemoderate12.555.71.44e+033.16Nordvest3.130.007010.024   
4.46e+06https://www.airbnb.com/rooms/4458924352       15050      Apartment2897Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.66e+033.22Brokvarterer3.290.00347-0.071   
4.46e+06https://www.airbnb.com/rooms/4458942352       210050      Apartment1793Private room0.5112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.51e+033.18Brokvarterer3.260.00415-0.0785  
4.46e+06https://www.airbnb.com/rooms/4463203598       100      Apartment11098Private room1  112TRUETRUENrrebromoderate12.655.72.39e+033.38Brokvarterer3.320.004640.0622  
4.51e+06https://www.airbnb.com/rooms/4505775399       13000      Apartment8399Private room1  112TRUETRUEValbystrict_14_with_grace_period12.555.71.9e+03 3.28West3.220.006080.053   
4.54e+06https://www.airbnb.com/rooms/4544267498       11000      Apartment4799Private room1  112FALSETRUENrrebromoderate12.555.72.09e+033.32Brokvarterer3.280.003430.0428  
4.55e+06https://www.airbnb.com/rooms/4554561299       1200180      Apartment15295Private room0.5122TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.12e+033.33Brokvarterer3.270.006110.0592  
4.56e+06https://www.airbnb.com/rooms/4561096299       10200      Apartment19397Private room1  111TRUETRUEAmager stflexible12.655.72e+03       3.3 Amager3.240.007360.0602  
4.58e+06https://www.airbnb.com/rooms/4583864359       1200100      House2494Private room1  112FALSETRUEBrnshj-Husumflexible12.555.72.04e+033.31West3.150.006680.157   
4.61e+06https://www.airbnb.com/rooms/4609483299       150150      Condominium13793Private room1  112FALSETRUEFrederiksbergflexible12.655.71.85e+033.27Brokvarterer3.270.00662-0.00444 
4.65e+06https://www.airbnb.com/rooms/4646985638       1250200      Condominium19100Private room1  112TRUETRUEIndre Byflexible12.655.73.6e+03 3.56Center3.420.006210.136   
4.65e+06https://www.airbnb.com/rooms/4652503352       20150      Condominium3497Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.41e+033.15Brokvarterer3.290.00511-0.137   
4.7e+06 https://www.airbnb.com/rooms/4698517571       13500      Condominium24495Private room1  112FALSEFALSEIndre Bymoderate12.655.72.63e+033.42Center3.450.00965-0.0293  
4.7e+06 https://www.airbnb.com/rooms/46997541e+03       21500      Apartment5691Private room1  112FALSETRUENrrebromoderate12.655.74.16e+033.62Brokvarterer3.270.003490.351   
4.81e+06https://www.airbnb.com/rooms/4813422598       100      Apartment1690Private room1  112FALSEFALSEsterbroflexible12.655.72.39e+033.38Brokvarterer3.230.0031 0.145   
4.82e+06https://www.airbnb.com/rooms/4824478299       1300100      Apartment3293Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.9e+03 3.28Brokvarterer3.290.00345-0.00822 
4.83e+06https://www.airbnb.com/rooms/4831114332       190100      Apartment6598Private room1  112FALSEFALSENrrebromoderate12.655.71.82e+033.26Brokvarterer3.280.00363-0.0199  
4.84e+06https://www.airbnb.com/rooms/4842831326       11000      Apartment2297Private room1  112FALSETRUEsterbroflexible12.655.71.4e+03 3.15Brokvarterer3.240.00309-0.0966  
4.87e+06https://www.airbnb.com/rooms/4869039279       100      House1196Private room1  112TRUETRUEBrnshj-Husumflexible12.555.71.12e+033.05West3.180.00725-0.134   
4.93e+06https://www.airbnb.com/rooms/4934875252       14001e+03      Apartment2598Private room0.5111FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.75.41e+033.73Brokvarterer3.230.004240.504   
4.96e+06https://www.airbnb.com/rooms/4961566551       100      Apartment21396Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.72.2e+03 3.34Brokvarterer3.330.007340.0117  
4.97e+06https://www.airbnb.com/rooms/4965011452       1100100      Apartment4394Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.31e+033.36Brokvarterer3.320.004180.0446  
5.01e+06https://www.airbnb.com/rooms/5005875352       15090      Apartment10896Private room1  111FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.71.82e+033.26Brokvarterer3.220.004660.0382  
5.02e+06https://www.airbnb.com/rooms/5023485452       1450      Apartment19696Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.655.71.85e+033.27Brokvarterer3.350.00688-0.0795  
5.1e+06 https://www.airbnb.com/rooms/5096545498       100      Apartment5092Private room1  112FALSETRUENrrebromoderate12.655.71.99e+033.3 Brokvarterer3.270.0034 0.0302  
5.2e+06 https://www.airbnb.com/rooms/5196851352       10100      Apartment4292Private room1.5101FALSETRUENrrebrostrict_14_with_grace_period12.555.71.81e+033.26Brokvarterer3.280.00424-0.0199  
5.26e+06https://www.airbnb.com/rooms/5256183751       20299      Other14390Private room1  122FALSEFALSEAmager stflexible12.655.73e+03       3.48Amager3.3 0.008940.176   
5.27e+06https://www.airbnb.com/rooms/5266224359       100      Apartment10100Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.44e+033.16Brokvarterer3.240.0035 -0.0797  
5.31e+06https://www.airbnb.com/rooms/5311361897       100      Apartment4894Private room1  112FALSETRUEIndre Bymoderate12.655.73.59e+033.55Center3.4 0.004160.152   
5.32e+06https://www.airbnb.com/rooms/5323217352       1150100      Other29698Private room1  123TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.96e+033.29Amager3.450.0121 -0.158   
5.33e+06https://www.airbnb.com/rooms/5326654578       2300200      Apartment5294Private room1  133FALSETRUEIndre Bymoderate12.655.72.61e+033.42Center3.440.00432-0.0224  
5.33e+06https://www.airbnb.com/rooms/5332373352       100      Apartment6797Private room2  112FALSETRUEAmager Vestflexible12.655.71.41e+033.15Amager3.280.00595-0.13    
5.35e+06https://www.airbnb.com/rooms/5350998897       12000      Apartment6494Private room1  223FALSEFALSEFrederiksbergflexible12.555.73.79e+033.58Brokvarterer3.330.003840.25    
5.35e+06https://www.airbnb.com/rooms/5352770412       1100100      House6398Private room1  122TRUETRUEAmager stmoderate12.655.72.15e+033.33Amager3.3 0.006860.0312  
5.41e+06https://www.airbnb.com/rooms/5409492452       1150250      Condominium15395Private room1  222FALSETRUENrrebromoderate12.655.72.96e+033.47Brokvarterer3.350.007230.123   
5.41e+06https://www.airbnb.com/rooms/5411807299       1150250      House7392Private room1  112FALSETRUEVanlsemoderate12.555.72.35e+033.37Nordvest3.180.007170.195   
5.48e+06https://www.airbnb.com/rooms/5478692598       100      Apartment2496Private room1  121FALSETRUEsterbromoderate12.655.72.39e+033.38Brokvarterer3.230.003380.145   
5.49e+06https://www.airbnb.com/rooms/5486840399       100      Apartment6398Private room1  112FALSETRUEIndre Byflexible12.655.71.6e+03 3.2 Center3.380.00428-0.181   
5.49e+06https://www.airbnb.com/rooms/5493419412       1175100      Condominium8999Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.72.22e+033.35Center3.480.00618-0.13    
5.5e+06 https://www.airbnb.com/rooms/5495140418       1250150      Apartment2594Private room1  112FALSEFALSEAmager Veststrict_14_with_grace_period12.655.62.52e+033.4 Amager3.260.004080.142   
5.5e+06 https://www.airbnb.com/rooms/5503308372       11500      Apartment10998Private room1.5101TRUETRUEFrederiksbergmoderate12.555.71.64e+033.21Brokvarterer3.310.00522-0.0927  
5.51e+06https://www.airbnb.com/rooms/55072131e+03       2250300      Apartment5890Private room1  121FALSETRUEFrederiksbergmoderate12.555.74.26e+033.63Brokvarterer3.230.003680.398   
5.66e+06https://www.airbnb.com/rooms/5655488638       1200400      Apartment1691Private room1  111FALSETRUEsterbrostrict_14_with_grace_period12.655.74.35e+033.64Brokvarterer3.240.003630.394   
5.66e+06https://www.airbnb.com/rooms/5659371452       1150150      Apartment14998Private room1  122TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.72.56e+033.41Brokvarterer3.320.005510.0847  
5.7e+06 https://www.airbnb.com/rooms/5696418651       160150      Apartment1094Private room1  111FALSEFALSEIndre Bymoderate12.655.73.26e+033.51Center3.360.004320.153   
5.78e+06https://www.airbnb.com/rooms/5784125399       1050      Apartment6093Private room1  112FALSETRUEIndre Byflexible12.655.71.8e+03 3.25Center3.380.00418-0.122   
5.78e+06https://www.airbnb.com/rooms/5784408485       11800      Apartment2498Private room1  112FALSEFALSENrrebromoderate12.655.72.12e+033.33Brokvarterer3.270.003290.0538  
5.8e+06 https://www.airbnb.com/rooms/5800324478       200      Apartment24695Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.91e+033.28Brokvarterer3.350.00844-0.0731  
5.82e+06https://www.airbnb.com/rooms/5821972252       11000      Apartment2697Private room1  111TRUEFALSEValbyflexible12.555.71.11e+033.04West3.130.00581-0.0864  
5.83e+06https://www.airbnb.com/rooms/5830110478       350150      Apartment27296Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.96e+033.29Brokvarterer3.360.0093 -0.0676  
5.84e+06https://www.airbnb.com/rooms/5837856399       10100      Apartment6594Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72e+03       3.3 Brokvarterer3.280.004080.0234  
5.86e+06https://www.airbnb.com/rooms/5858011379       15275      Apartment1697Private room1  112FALSETRUEValbystrict_14_with_grace_period12.555.71.87e+033.27West3.180.005410.09    
5.89e+06https://www.airbnb.com/rooms/5890402419       2075      Apartment9198Private room1  112TRUETRUENrrebroflexible12.655.71.68e+033.22Brokvarterer3.290.00439-0.0621  
5.91e+06https://www.airbnb.com/rooms/5908499498       11500      Apartment13899Private room1  112TRUETRUEIndre Bymoderate12.655.72.14e+033.33Center3.450.0056 -0.123   
5.93e+06https://www.airbnb.com/rooms/5926122352       1500      Apartment10893Private room1  112FALSEFALSENrrebromoderate12.655.71.46e+033.16Brokvarterer3.280.0045 -0.117   
5.95e+06https://www.airbnb.com/rooms/5950433598       10250      Apartment11992Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.39e+033.53Center3.430.0053 0.0994  
5.99e+06https://www.airbnb.com/rooms/5987411339       1100175      Apartment18395Private room1  111TRUETRUEsterbroflexible12.655.72.16e+033.33Brokvarterer3.260.006690.0714  
6.01e+06https://www.airbnb.com/rooms/6007570352       1150200      Apartment3499Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.655.72.36e+033.37Brokvarterer3.290.003540.0783  
6.01e+06https://www.airbnb.com/rooms/6011562678       5750      Apartment4798Private room1  112FALSETRUEAmager stmoderate12.655.72.79e+033.45Amager3.250.004050.195   
6.03e+06https://www.airbnb.com/rooms/6028651452       100      Apartment7991Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.81e+033.26Brokvarterer3.290.004  -0.0343  
6.04e+06https://www.airbnb.com/rooms/6035346598       13000      Apartment1596Private room1  112FALSEFALSEIndre Byflexible12.655.72.69e+033.43Center3.370.004010.0572  
6.1e+06 https://www.airbnb.com/rooms/6096125272       110050      Apartment4097Private room1  111FALSETRUEFrederiksbergmoderate12.555.71.39e+033.14Brokvarterer3.240.00345-0.0956  
6.11e+06https://www.airbnb.com/rooms/6111481498       2150700      Apartment1694Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.14e+033.33Brokvarterer3.270.003260.0649  
6.14e+06https://www.airbnb.com/rooms/6143381379       1100100      Apartment12897Private room1  112FALSEFALSEBispebjergflexible12.555.72.02e+033.3 Nordvest3.150.006250.159   
6.15e+06https://www.airbnb.com/rooms/6148669352       2100100      Apartment11193Private room1  113FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.51e+033.18Brokvarterer3.320.00471-0.138   
6.16e+06https://www.airbnb.com/rooms/6158131365       10224      Apartment6697Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.36e+033.37Brokvarterer3.250.003570.121   
6.19e+06https://www.airbnb.com/rooms/6188163412       2075      Apartment1595Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.65e+033.22Brokvarterer3.270.00327-0.0501  
6.21e+06https://www.airbnb.com/rooms/6206614651       11500      Apartment8296Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.75e+033.44Brokvarterer3.310.004220.131   
6.25e+06https://www.airbnb.com/rooms/6246994352       10200      Apartment26100Private room1  112TRUEFALSEFrederiksbergstrict_14_with_grace_period12.555.72.21e+033.34Brokvarterer3.320.004280.0204  
6.25e+06https://www.airbnb.com/rooms/6251488551       11500      Apartment4493Private room1  101TRUEFALSENrrebromoderate12.655.72.35e+033.37Brokvarterer3.260.004210.109   
6.27e+06https://www.airbnb.com/rooms/6265316591       1150200      Other1891Private room1  232FALSEFALSENrrebrostrict_14_with_grace_period12.555.73.31e+033.52Brokvarterer3.4 0.008020.12    
6.41e+06https://www.airbnb.com/rooms/6412978498       275200      Apartment19993Private room1  123TRUETRUENrrebromoderate12.655.72.07e+033.32Brokvarterer3.360.00699-0.0458  
6.42e+06https://www.airbnb.com/rooms/6421166352       100      Apartment1798Private room1  112FALSETRUENrrebromoderate12.555.71.41e+033.15Brokvarterer3.270.0033 -0.123   
6.43e+06https://www.airbnb.com/rooms/6427286545       11150      House2194Private room1  111FALSETRUEBrnshj-Husummoderate12.555.72.3e+03 3.36West3.140.006920.218   
6.43e+06https://www.airbnb.com/rooms/6428857498       3250280      Apartment12394Private room1  135TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.24e+033.35Brokvarterer3.420.00586-0.0707  
6.43e+06https://www.airbnb.com/rooms/6431178551       21250      Apartment9299Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.33e+033.37Brokvarterer3.310.004360.0524  
6.48e+06https://www.airbnb.com/rooms/6484100352       100      Apartment3194Private room1  111FALSETRUEBispebjergflexible12.555.71.41e+033.15Nordvest3.090.004670.0595  
6.55e+06https://www.airbnb.com/rooms/6549452399       11000      Apartment1395Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.7e+03 3.23Center3.380.0044 -0.152   
6.58e+06https://www.airbnb.com/rooms/6579997352       11200      Apartment1999Private room1  112FALSETRUEAmager stflexible12.655.71.53e+033.18Amager3.220.00383-0.0353  
6.6e+06 https://www.airbnb.com/rooms/6600984246       10120      Condominium10592Private room1  111FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.46e+033.17Amager3.250.00645-0.0815  
6.62e+06https://www.airbnb.com/rooms/6621330365       11500      Apartment12496Private room1  111TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.61e+033.21Amager3.270.00563-0.0657  
6.65e+06https://www.airbnb.com/rooms/6650539618       11500      Apartment2593Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.72.62e+033.42Brokvarterer3.240.003060.179   
6.66e+06https://www.airbnb.com/rooms/6656623299       100      Apartment1295Private room1  111FALSETRUENrrebrostrict_14_with_grace_period12.555.71.2e+03 3.08Brokvarterer3.250.00361-0.172   
6.67e+06https://www.airbnb.com/rooms/6668097372       100      Apartment4897Private room1  111FALSEFALSEFrederiksbergmoderate12.555.71.49e+033.17Brokvarterer3.240.00352-0.0668  
6.71e+06https://www.airbnb.com/rooms/6708024399       100      Apartment1494Private room1  112FALSETRUENrrebroflexible12.555.71.6e+03 3.2 Brokvarterer3.240.00305-0.0356  
6.74e+06https://www.airbnb.com/rooms/6743353385       1400      Apartment9796Private room1  112FALSETRUENrrebroflexible12.555.71.58e+033.2 Brokvarterer3.260.00425-0.0567  
6.76e+06https://www.airbnb.com/rooms/6755209392       2100100      Apartment11590Private room0.5113FALSETRUEsterbromoderate12.655.71.67e+033.22Brokvarterer3.290.00537-0.0647  
6.81e+06https://www.airbnb.com/rooms/6810924452       11000      Apartment10693Private room1  112FALSETRUENrrebromoderate12.655.71.91e+033.28Brokvarterer3.280.004450.000659
6.82e+06https://www.airbnb.com/rooms/6822153697       100      Apartment24098Private room1  102TRUETRUEFrederiksbergmoderate12.655.72.79e+033.45Brokvarterer3.340.008210.107   
6.85e+06https://www.airbnb.com/rooms/6850687359       100      Condominium3994Private room1  112FALSETRUENrrebromoderate12.655.71.44e+033.16Brokvarterer3.280.00511-0.125   
6.88e+06https://www.airbnb.com/rooms/6875859419       100      Apartment2193Private room1  112FALSETRUEIndre Byflexible12.655.71.68e+033.22Center3.370.00397-0.146   
6.9e+06 https://www.airbnb.com/rooms/6898141352       150100      Apartment1995Private room1  111FALSETRUEAmager stmoderate12.655.71.86e+033.27Amager3.210.004040.0639  
6.91e+06https://www.airbnb.com/rooms/6908331312       1150100      Apartment2593Private room1  112FALSETRUEBispebjergstrict_14_with_grace_period12.555.71.8e+03 3.25Nordvest3.170.004850.0864  
6.91e+06https://www.airbnb.com/rooms/6910462319       1050      Apartment10100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.48e+033.17Brokvarterer3.270.00339-0.104   
6.92e+06https://www.airbnb.com/rooms/6916918551       100      Apartment3296Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.2e+03 3.34Brokvarterer3.270.003270.072   
6.94e+06https://www.airbnb.com/rooms/6942180531       250150      Apartment21791Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.17e+033.34Brokvarterer3.270.008020.068   
6.95e+06https://www.airbnb.com/rooms/6948866452       219075      Apartment2499Private room1  112FALSETRUEValbymoderate12.555.72e+03       3.3 West3.170.0053 0.134   
6.95e+06https://www.airbnb.com/rooms/6954287372       2150200      Apartment1397Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.64e+033.21Brokvarterer3.270.00329-0.055   
6.97e+06https://www.airbnb.com/rooms/6972756538       100      Apartment3896Private room1  111TRUETRUEIndre Byflexible12.655.72.15e+033.33Center3.370.00477-0.0375  
7.05e+06https://www.airbnb.com/rooms/7051763399       215035      Apartment10896Private room1  112TRUETRUENrrebromoderate12.555.71.75e+033.24Brokvarterer3.310.0046 -0.0716  
7.07e+06https://www.airbnb.com/rooms/7068872578       10150      Apartment6299Private room1.5111FALSETRUEsterbromoderate12.655.72.91e+033.46Brokvarterer3.270.0043 0.193   
7.12e+06https://www.airbnb.com/rooms/7121691392       1150100      Apartment6698Private room1  112TRUETRUEsterbroflexible12.655.72.12e+033.33Brokvarterer3.280.004090.0438  
7.14e+06https://www.airbnb.com/rooms/7139250531       10253      Apartment3992Private room1  112FALSETRUEAmager Vestmoderate12.655.73.14e+033.5 Amager3.240.003960.256   
7.14e+06https://www.airbnb.com/rooms/7140873817       11120      Apartment2093Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.63.38e+033.53Brokvarterer3.270.003260.264   
7.14e+06https://www.airbnb.com/rooms/7143090399       11000      Apartment3096Private room1  112FALSETRUEAmager stflexible12.655.71.7e+03 3.23Amager3.220.003790.0121  
7.16e+06https://www.airbnb.com/rooms/7161197425       12500      Apartment12095Private room0.5111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.95e+033.29Brokvarterer3.250.0054 0.0382  
7.2e+06 https://www.airbnb.com/rooms/7204874352       1200200      Apartment3695Private room1  112FALSETRUENrrebroflexible12.555.72.41e+033.38Brokvarterer3.240.003120.138   
7.21e+06https://www.airbnb.com/rooms/7207942352       42500      Apartment8896Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.655.71.66e+033.22Brokvarterer3.290.00455-0.0734  
7.24e+06https://www.airbnb.com/rooms/7241592292       2100100      Apartment3490Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.27e+033.1 Brokvarterer3.260.00333-0.161   
7.25e+06https://www.airbnb.com/rooms/7249487531       100      Apartment5996Private room1  112FALSETRUENrrebromoderate12.555.72.12e+033.33Brokvarterer3.280.0035 0.0513  
7.26e+06https://www.airbnb.com/rooms/7258234498       100      Apartment18093Private room1  122FALSETRUEAmager ststrict_14_with_grace_period12.655.71.99e+033.3 Amager3.280.007120.0146  
7.26e+06https://www.airbnb.com/rooms/7259278399       2100100      Apartment5196Private room1  112FALSETRUEValbystrict_14_with_grace_period12.555.71.7e+03 3.23West3.190.005510.0433  
7.29e+06https://www.airbnb.com/rooms/7285771252       2200100      Apartment1090Private room1  112FALSETRUEBispebjergflexible12.555.71.21e+033.08Nordvest3.120.00454-0.0342  
7.3e+06 https://www.airbnb.com/rooms/7304999458       1400200      Apartment1191Private room1  112FALSETRUEIndre Bymoderate12.655.73.03e+033.48Center3.390.004210.0892  
7.34e+06https://www.airbnb.com/rooms/7336136226       1125150      Apartment1395Private room1  111TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.63e+033.21Nordvest3.160.005650.0494  
7.36e+06https://www.airbnb.com/rooms/7357665452       1500      Apartment1896Private room1.5112FALSETRUEsterbromoderate12.655.71.86e+033.27Brokvarterer3.3 0.00383-0.0264  
7.36e+06https://www.airbnb.com/rooms/7359510465       100      Apartment23999Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.86e+033.27Brokvarterer3.310.00869-0.0409  
7.36e+06https://www.airbnb.com/rooms/7362292598       100      Apartment9398Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.39e+033.38Brokvarterer3.280.004180.0945  
7.38e+06https://www.airbnb.com/rooms/7381830498       200      Apartment1599Private room1  112FALSETRUENrrebroflexible12.555.71.99e+033.3 Brokvarterer3.250.003150.0539  
7.38e+06https://www.airbnb.com/rooms/7383001551       2500250      Apartment2691Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.7e+03 3.43Brokvarterer3.280.003470.15    
7.42e+06https://www.airbnb.com/rooms/7415202551       13000      Apartment7396Private room1  102TRUEFALSEFrederiksbergflexible12.655.72.5e+03 3.4 Brokvarterer3.280.004140.118   
7.46e+06https://www.airbnb.com/rooms/7464417352       100      Apartment12899Private room1  111TRUETRUEsterbroflexible12.655.71.41e+033.15Brokvarterer3.260.00524-0.11    
7.49e+06https://www.airbnb.com/rooms/7487775418       2250350      Apartment3798Private room1  112TRUETRUENrrebromoderate12.555.71.92e+033.28Brokvarterer3.3 0.00406-0.0204  
7.5e+06 https://www.airbnb.com/rooms/7499206458       11500      Other30597Private room1  112TRUETRUEAmager Vestmoderate12.655.71.98e+033.3 Amager3.4 0.0123 -0.0982  
7.51e+06https://www.airbnb.com/rooms/7507730246       10201      Apartment1292Private room1  111TRUETRUEAmager ststrict_14_with_grace_period12.655.71.79e+033.25Amager3.250.005070.00416 
7.54e+06https://www.airbnb.com/rooms/7539097445       10149      Condominium2892Private room1  122FALSETRUEIndre Bymoderate12.655.72.38e+033.38Center3.410.0057 -0.0333  
7.55e+06https://www.airbnb.com/rooms/7547266352       2150100      Condominium3994Private room1  113FALSEFALSEBispebjergmoderate12.555.71.56e+033.19Nordvest3.2 0.00621-0.00909 
7.55e+06https://www.airbnb.com/rooms/75503791.5e+03 11e+031.5e+03Apartment11100Private room1  111FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.71.3e+04 4.11Brokvarterer3.260.003710.858   
7.56e+06https://www.airbnb.com/rooms/7561549472       11120      Condominium1195Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.72e+03       3.3 Brokvarterer3.250.005050.0492  
7.65e+06https://www.airbnb.com/rooms/7653972246       12950      Apartment4791Private room1  111FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.71.28e+033.11Brokvarterer3.250.00371-0.143   
7.66e+06https://www.airbnb.com/rooms/7660343339       219089      Apartment1090Private room1  122FALSETRUENrrebromoderate12.555.71.55e+033.19Brokvarterer3.260.00336-0.0704  
7.67e+06https://www.airbnb.com/rooms/7668308598       10216      Apartment10499Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.73.26e+033.51Brokvarterer3.290.004470.225   
7.7e+06 https://www.airbnb.com/rooms/7703939598       12000      Apartment1694Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.59e+033.41Brokvarterer3.240.003050.175   
7.72e+06https://www.airbnb.com/rooms/7721166206       10261      Townhouse1790Private room1  112FALSETRUEBispebjergmoderate12.555.71.87e+033.27Nordvest3.160.0089 0.115   
7.73e+06https://www.airbnb.com/rooms/7731521372       100      Apartment10895Private room1  111TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.49e+033.17Brokvarterer3.3 0.00485-0.123   
7.75e+06https://www.airbnb.com/rooms/7746152352       175100      Apartment6799Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.88e+033.27Amager3.3 0.00477-0.0278  
7.78e+06https://www.airbnb.com/rooms/7781967359       2100149      Apartment10898Private room1  112TRUEFALSEValbystrict_14_with_grace_period12.555.71.54e+033.19West3.230.00636-0.0414  
7.79e+06https://www.airbnb.com/rooms/7787746399       20100      Apartment7997Private room1  112TRUETRUEValbyflexible12.555.71.6e+03 3.2 West3.180.005890.0271  
7.82e+06https://www.airbnb.com/rooms/7820703598       1950      Apartment42100Private room1  111TRUETRUEIndre Byflexible12.655.72.49e+033.4 Center3.380.004790.0195  
7.83e+06https://www.airbnb.com/rooms/7829510252       10100      Apartment1193Private room1  112FALSETRUEBispebjergmoderate12.555.71.41e+033.15Nordvest3.150.004710.00134 
7.85e+06https://www.airbnb.com/rooms/7853704419       1035      Apartment2896Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.82e+033.26Brokvarterer3.270.00326-0.0114  
7.88e+06https://www.airbnb.com/rooms/7881239525       100      Apartment1792Private room1  112FALSETRUEFrederiksbergflexible12.555.72.1e+03 3.32Brokvarterer3.240.003060.0857  
7.9e+06 https://www.airbnb.com/rooms/7895375312       1100150      Apartment5595Private room1  112FALSETRUENrrebromoderate12.555.71.95e+033.29Brokvarterer3.270.003440.0157  
8.02e+06https://www.airbnb.com/rooms/8019633591       20225      House20097Private room1  246TRUETRUEValbyflexible12.555.72.36e+033.37West3.4 0.00961-0.031   
8.02e+06https://www.airbnb.com/rooms/8023598452       1150250      Apartment2497Private room1  112FALSETRUENrrebroflexible12.655.72.96e+033.47Brokvarterer3.240.003090.227   
8.04e+06https://www.airbnb.com/rooms/8040088299       100      House4098Private room1  111TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.2e+03 3.08Nordvest3.190.00757-0.112   
8.07e+06https://www.airbnb.com/rooms/8069900525       100      Apartment11597Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.1e+03 3.32Amager3.310.005330.014   
8.07e+06https://www.airbnb.com/rooms/8074752399       10100      Apartment15997Private room1  114TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72e+03       3.3 Brokvarterer3.410.00618-0.114   
8.12e+06https://www.airbnb.com/rooms/8122709286       12000      Other3598Private room1  111FALSEFALSEAmager Vestmoderate12.655.61.34e+033.13Amager3.290.008  -0.157   
8.14e+06https://www.airbnb.com/rooms/8138658399       100      Apartment11794Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.6e+03 3.2 Brokvarterer3.260.00478-0.0532  
8.15e+06https://www.airbnb.com/rooms/8146023319       1050      Apartment2195Private room1  112FALSETRUEsterbroflexible12.655.71.48e+033.17Brokvarterer3.240.00305-0.072   
8.16e+06https://www.airbnb.com/rooms/8155601352       11000      Apartment1296Private room1  112FALSETRUENrrebroflexible12.555.71.51e+033.18Brokvarterer3.240.00307-0.0625  
8.17e+06https://www.airbnb.com/rooms/8165026399       10100      Apartment4198Private room1  124TRUETRUENrrebroflexible12.555.72e+03       3.3 Brokvarterer3.350.00459-0.0496  
8.2e+06 https://www.airbnb.com/rooms/8199047299       10150      Townhouse1491Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.8e+03 3.25Brokvarterer3.290.00843-0.0386  
8.2e+06 https://www.airbnb.com/rooms/8199149445       11500      Apartment5390Private room1  111FALSEFALSEIndre Byflexible12.655.71.93e+033.29Center3.340.00428-0.05    
8.21e+06https://www.airbnb.com/rooms/8209968551       11750      Apartment3197Private room1  112FALSETRUEIndre Byflexible12.655.72.38e+033.38Center3.380.00402-0.000529
8.23e+06https://www.airbnb.com/rooms/8234588850       100      Apartment12798Private room1  122TRUETRUEIndre Byflexible12.655.73.4e+03 3.53Center3.420.005470.107   
8.28e+06https://www.airbnb.com/rooms/8280613551       100      Apartment10198Private room1.5122TRUETRUEAmager stflexible12.655.72.2e+03 3.34Amager3.290.005460.0551  
8.32e+06https://www.airbnb.com/rooms/8320240299       18080      Apartment4893Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.6e+03 3.2 Brokvarterer3.290.00354-0.0858  
8.36e+06https://www.airbnb.com/rooms/8357491452       1195150      Apartment7299Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.6e+03 3.42Brokvarterer3.280.003770.133   
8.37e+06https://www.airbnb.com/rooms/8368550252       100      Apartment1090Private room1  122FALSETRUEVanlseflexible12.555.71.01e+033   Nordvest3.120.00454-0.113   
8.4e+06 https://www.airbnb.com/rooms/8395049332       200      Apartment1596Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.33e+033.12Center3.420.00425-0.295   
8.42e+06https://www.airbnb.com/rooms/8419089266       145230      Condominium6196Private room2  102TRUETRUEIndre Bymoderate12.655.72.03e+033.31Center3.5 0.00727-0.195   
8.43e+06https://www.airbnb.com/rooms/8432170299       100      Apartment1292Private room1  112FALSETRUENrrebroflexible12.555.71.2e+03 3.08Brokvarterer3.240.00307-0.158   
8.46e+06https://www.airbnb.com/rooms/8463755252       1100100      Apartment8294Private room1  121FALSETRUEsterbrostrict_14_with_grace_period12.655.71.51e+033.18Brokvarterer3.260.00418-0.0816  
8.49e+06https://www.airbnb.com/rooms/8494250186       11490      Apartment1092Private room1  112FALSETRUEIndre Bymoderate12.655.7893       2.95Center3.390.0042 -0.443   
8.5e+06 https://www.airbnb.com/rooms/8501658372       15050      Apartment2699Private room1.5112TRUETRUENrrebromoderate12.555.71.74e+033.24Brokvarterer3.330.00459-0.0901  
8.52e+06https://www.airbnb.com/rooms/8518289498       100      Apartment6098Private room1.5111TRUETRUENrrebroflexible12.555.71.99e+033.3 Brokvarterer3.270.0047 0.0275  
8.53e+06https://www.airbnb.com/rooms/8530285432       1114125      Apartment8296Private room1  112FALSEFALSEAmager stflexible12.655.62.34e+033.37Amager3.230.004480.143   
8.56e+06https://www.airbnb.com/rooms/8562303671       14000      Apartment3099Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.73.08e+033.49Brokvarterer3.290.003530.196   
8.56e+06https://www.airbnb.com/rooms/8563559578       100      Apartment14396Private room1  112TRUEFALSEIndre Byflexible12.655.72.31e+033.36Center3.420.0058 -0.0601  
8.63e+06https://www.airbnb.com/rooms/8628762352       100      Condominium5195Private room1  111FALSETRUEAmager stflexible12.655.71.41e+033.15Amager3.2 0.00564-0.0475  
8.67e+06https://www.airbnb.com/rooms/8667742399       100      Apartment2498Private room2  112FALSETRUEIndre Byflexible12.655.71.6e+03 3.2 Center3.430.00576-0.227   
8.69e+06https://www.airbnb.com/rooms/8693292339       100      House2799Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.61.36e+033.13Brokvarterer3.270.0064 -0.134   
8.71e+06https://www.airbnb.com/rooms/8705878332       100      Apartment3596Private room1  111TRUEFALSENrrebromoderate12.555.71.33e+033.12Brokvarterer3.270.00419-0.142   
8.75e+06https://www.airbnb.com/rooms/8747872498       160100      Apartment7194Private room1  112FALSEFALSENrrebroflexible12.655.72.45e+033.39Brokvarterer3.250.003630.141   
8.77e+06https://www.airbnb.com/rooms/8769969399       2150220      Apartment14094Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.75e+033.24Brokvarterer3.310.0055 -0.0637  
8.77e+06https://www.airbnb.com/rooms/8770563339       11500      Other32496Private room1  112TRUETRUEAmager Vestmoderate12.655.71.51e+033.18Amager3.4 0.0129 -0.219   
8.81e+06https://www.airbnb.com/rooms/8805154332       2100150      Apartment17997Private room1.5132TRUETRUEFrederiksbergflexible12.555.71.43e+033.15Brokvarterer3.330.00681-0.172   
8.87e+06https://www.airbnb.com/rooms/8874070345       1130125      Apartment2492Private room1  112FALSETRUEBispebjergstrict_14_with_grace_period12.555.72.01e+033.3 Nordvest3.170.004850.136   
8.88e+06https://www.airbnb.com/rooms/8876954598       1150100      Apartment1398Private room1  112TRUETRUEIndre Byflexible12.655.72.94e+033.47Center3.4 0.004820.0641  
8.88e+06https://www.airbnb.com/rooms/8883501545       20150      House9898Private room1  123TRUETRUEValbyflexible12.555.72.18e+033.34West3.240.007550.103   
8.91e+06https://www.airbnb.com/rooms/8905294751       20100      Apartment2994Private room1  133TRUETRUENrrebrostrict_14_with_grace_period12.655.73e+03       3.48Brokvarterer3.350.004380.126   
8.91e+06https://www.airbnb.com/rooms/8911684312       11000      Apartment2498Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.35e+033.13Brokvarterer3.240.00341-0.107   
8.93e+06https://www.airbnb.com/rooms/8928467598       260200      Apartment3591Private room1.5102TRUETRUEIndre Byflexible12.655.72.45e+033.39Center3.430.00512-0.0362  
8.98e+06https://www.airbnb.com/rooms/8978187498       150100      Apartment15196Private room1  112FALSEFALSEIndre Byflexible12.655.72.44e+033.39Center3.4 0.00617-0.00832 
8.98e+06https://www.airbnb.com/rooms/8984302498       100      Apartment1893Private room1  112FALSETRUEsterbromoderate12.655.71.99e+033.3 Brokvarterer3.260.003260.0344  
8.99e+06https://www.airbnb.com/rooms/8986360751       15000      Apartment8998Private room1  112TRUETRUEIndre Bymoderate12.655.73.5e+03 3.54Center3.440.004820.1     
9e+06       https://www.airbnb.com/rooms/9001456352       20100      Apartment1496Private room1  123FALSETRUENrrebroflexible12.555.71.41e+033.15Brokvarterer3.280.00331-0.129   
9e+06       https://www.airbnb.com/rooms/9003896286       1100140      Apartment17298Private room1  122TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.61.8e+03 3.26Brokvarterer3.350.0062 -0.0897  
9.01e+06https://www.airbnb.com/rooms/9006017379       11020      Apartment23298Private room1  111TRUETRUENrrebroflexible12.655.71.62e+033.21Brokvarterer3.270.00822-0.0655  
9.02e+06https://www.airbnb.com/rooms/9024879525       11490      Apartment6799Private room1  112FALSETRUEAmager Vestmoderate12.655.72.25e+033.35Amager3.250.0043 0.0975  
9.04e+06https://www.airbnb.com/rooms/9037095525       100      Apartment5294Private room1  112TRUETRUEAmager Vestmoderate12.655.72.1e+03 3.32Amager3.270.004590.0474  
9.05e+06https://www.airbnb.com/rooms/9054009525       10216      Apartment7699Private room1  112TRUETRUEAmager Vestflexible12.655.72.96e+033.47Amager3.260.004730.213   
9.11e+06https://www.airbnb.com/rooms/9106535399       1750      Apartment2696Private room1  112FALSEFALSEAmager Vestmoderate12.655.61.67e+033.22Amager3.240.00392-0.0206  
9.11e+06https://www.airbnb.com/rooms/9106771551       125050      Apartment11090Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.72.65e+033.42Amager3.270.005220.155   
9.13e+06https://www.airbnb.com/rooms/9132109272       1200100      Apartment1596Private room1  122TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.61.69e+033.23Brokvarterer3.320.00435-0.0891  
9.14e+06https://www.airbnb.com/rooms/9141811286       100      Apartment2897Private room1  111TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.14e+033.06Amager3.260.00489-0.199   
9.19e+06https://www.airbnb.com/rooms/9192682525       1110190      Apartment20093Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.97e+033.47Center3.450.007540.0266  
9.21e+06https://www.airbnb.com/rooms/9206621498       1050      Apartment1090Private room1  112FALSETRUEBispebjergflexible12.555.72.19e+033.34Nordvest3.120.004540.225   
9.25e+06https://www.airbnb.com/rooms/9253274438       12980      Apartment144100Private room1  112TRUETRUEsterbromoderate12.655.72.05e+033.31Brokvarterer3.320.00541-0.0132  
9.31e+06https://www.airbnb.com/rooms/9314963306       10200      Apartment7698Private room1  111TRUETRUEsterbroflexible12.655.72.02e+033.31Brokvarterer3.250.0043 0.0583  
9.34e+06https://www.airbnb.com/rooms/9337861246       1200180      House2499Private room1  112FALSEFALSEAmager Vestmoderate12.655.61.9e+03 3.28Amager3.270.006440.0136  
9.38e+06https://www.airbnb.com/rooms/9378415339       14000      Townhouse4193Private room1  112FALSETRUEsterbromoderate12.655.71.76e+033.24Brokvarterer3.280.00833-0.0368  
9.41e+06https://www.airbnb.com/rooms/9407356797       10150      Apartment1799Private room1  112FALSEFALSEAmager stmoderate12.655.73.79e+033.58Amager3.250.003980.332   
9.45e+06https://www.airbnb.com/rooms/9446839299       100      Apartment1195Private room1  112FALSETRUENrrebroflexible12.555.71.2e+03 3.08Brokvarterer3.240.00306-0.162   
9.5e+06 https://www.airbnb.com/rooms/9499979751       2150450      Apartment3599Private room1  113FALSETRUEFrederiksbergflexible12.555.73.15e+033.5 Brokvarterer3.280.003450.214   
9.5e+06 https://www.airbnb.com/rooms/9504995352       1300150      Apartment2193Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.72.31e+033.36Brokvarterer3.280.003440.079   
9.51e+06https://www.airbnb.com/rooms/9510387272       100      Apartment4694Private room1  111FALSETRUEVanlsemoderate12.555.71.09e+033.04Nordvest3.120.0049 -0.082   
9.57e+06https://www.airbnb.com/rooms/9573456697       1150300      Apartment4395Private room1  112FALSETRUEIndre Byflexible12.655.74.14e+033.62Center3.380.004040.24    
9.59e+06https://www.airbnb.com/rooms/9591063352       130050      Apartment4696Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.91e+033.28Amager3.270.004180.0148  
9.59e+06https://www.airbnb.com/rooms/9592158458       1100150      Apartment3399Private room1  111TRUETRUEIndre Bymoderate12.655.72.53e+033.4 Center3.4 0.004860.00317 
9.63e+06https://www.airbnb.com/rooms/9625136405       2220100      Apartment16497Private room1  112TRUETRUEAmager Vestmoderate12.655.71.84e+033.26Amager3.3 0.00632-0.033   
9.68e+06https://www.airbnb.com/rooms/9682997252       101e+03      Apartment11495Private room1  111FALSEFALSEFrederiksbergmoderate12.555.75.01e+033.7 Brokvarterer3.250.004780.452   
9.7e+06 https://www.airbnb.com/rooms/9704196399       100      Apartment9696Private room1  112FALSETRUEsterbroflexible12.655.71.6e+03 3.2 Brokvarterer3.260.00423-0.0522  
9.71e+06https://www.airbnb.com/rooms/9711772379       1400400      Apartment2394Private room1  211TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.52e+033.55Center3.460.005690.0898  
9.77e+06https://www.airbnb.com/rooms/9766235412       100      Apartment2895Private room1  102TRUETRUEIndre Bymoderate12.655.71.65e+033.22Center3.430.00477-0.213   
9.77e+06https://www.airbnb.com/rooms/9766329518       100      Apartment28100Private room1  112TRUETRUEIndre Byflexible12.655.72.07e+033.32Center3.410.00472-0.0934  
9.79e+06https://www.airbnb.com/rooms/9792124372       13501e+03      Apartment2896Private room1  111FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.75.84e+033.77Brokvarterer3.250.0036 0.513   
9.82e+06https://www.airbnb.com/rooms/9823287352       150300      House15594Private room1.5346FALSETRUEAmager stflexible12.655.62.66e+033.42Amager3.520.00801-0.0916  
9.83e+06https://www.airbnb.com/rooms/9832836791       120070      Apartment11299Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.73.64e+033.56Brokvarterer3.320.004690.243   
9.85e+06https://www.airbnb.com/rooms/9849017159       1050      Apartment1094Private room1  111FALSEFALSEBispebjergflexible12.555.7836       2.92Nordvest3.090.00463-0.163   
9.88e+06https://www.airbnb.com/rooms/9877245419       1050      Apartment17096Private room1  123FALSETRUENrrebrostrict_14_with_grace_period12.555.71.88e+033.27Brokvarterer3.350.0065 -0.0762  
9.92e+06https://www.airbnb.com/rooms/9917282492       1150120      Apartment11099Private room1  112TRUETRUEAmager Vestmoderate12.655.62.6e+03 3.41Amager3.290.005150.123   
9.96e+06https://www.airbnb.com/rooms/9963567478       100      Condominium2094Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.91e+033.28Brokvarterer3.250.005040.0294  
9.97e+06https://www.airbnb.com/rooms/9967102352       1200150      Apartment9095Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.21e+033.34Brokvarterer3.250.004060.0911  
1e+07       https://www.airbnb.com/rooms/10003912272       10100      Apartment1696Private room1  112FALSETRUENrrebromoderate12.555.71.49e+033.17Brokvarterer3.270.00327-0.0959  
1e+07       https://www.airbnb.com/rooms/10038521299       280140      Apartment8692Private room1  112FALSETRUEValbyflexible12.555.61.28e+033.11West3.140.00572-0.0353  
1.01e+07https://www.airbnb.com/rooms/10062346425       12500      Apartment4196Private room1  112FALSETRUEAmager Vestflexible12.655.71.95e+033.29Amager3.220.003860.0708  
1.02e+07https://www.airbnb.com/rooms/10153993299       14050      Apartment1297Private room1  112FALSETRUEsterbroflexible12.655.71.44e+033.16Brokvarterer3.240.00309-0.0851  
1.02e+07https://www.airbnb.com/rooms/10216837299       100      House1694Private room1.5101TRUETRUEBrnshj-Husumstrict_14_with_grace_period12.555.71.2e+03 3.08West3.220.00754-0.139   
1.03e+07https://www.airbnb.com/rooms/10304147252       1400      Apartment1798Private room1  112FALSETRUEBispebjergmoderate12.555.71.05e+033.02Nordvest3.150.00475-0.134   
1.03e+07https://www.airbnb.com/rooms/10332346352       120040      Apartment5696Private room1  112FALSETRUEIndre Bymoderate12.655.71.77e+033.25Center3.410.00423-0.159   
1.04e+07https://www.airbnb.com/rooms/10382071598       100      Apartment4593Private room1  112FALSEFALSEAmager ststrict_14_with_grace_period12.655.72.39e+033.38Amager3.260.004160.117   
1.04e+07https://www.airbnb.com/rooms/10406326498       2250200      Apartment8199Private room1  324FALSETRUEAmager Vestmoderate12.655.72.24e+033.35Amager3.420.00546-0.069   
1.04e+07https://www.airbnb.com/rooms/10414951292       12500      Townhouse7297Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.71.42e+033.15Brokvarterer3.310.0086 -0.159   
1.04e+07https://www.airbnb.com/rooms/10435392292       12500      Condominium8997Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.71.42e+033.15Brokvarterer3.310.00571-0.162   
1.04e+07https://www.airbnb.com/rooms/10435787292       12500      Condominium2796Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.42e+033.15Brokvarterer3.3 0.00524-0.15    
1.05e+07https://www.airbnb.com/rooms/10487990399       100      Apartment1492Private room1  112FALSETRUEBispebjergflexible12.555.71.6e+03 3.2 Nordvest3.120.004520.0835  
1.05e+07https://www.airbnb.com/rooms/10494140724       11950      Apartment2397Private room1  112FALSEFALSEIndre Bymoderate12.655.73.09e+033.49Center3.4 0.004150.0876  
1.05e+07https://www.airbnb.com/rooms/10511101465       100      Apartment1790Private room1  112FALSETRUEIndre Byflexible12.655.71.86e+033.27Center3.370.00402-0.0959  
1.06e+07https://www.airbnb.com/rooms/10604516485       2374336      House2491Private room1  122FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.72.31e+033.36West3.190.006960.171   
1.06e+07https://www.airbnb.com/rooms/10645628352       165150      House7797Private room1  123FALSETRUEAmager Vestmoderate12.655.72.07e+033.32Amager3.310.006760.00816 
1.06e+07https://www.airbnb.com/rooms/106472391.25e+03100      Apartment5095Private room1  112FALSEFALSEIndre Byflexible12.655.75e+03       3.7 Center3.380.004090.321   
1.06e+07https://www.airbnb.com/rooms/10648645219       100      Apartment1495Private room1  112FALSEFALSEBispebjergstrict_14_with_grace_period12.555.7876       2.94Nordvest3.170.00486-0.227   
1.07e+07https://www.airbnb.com/rooms/10663931352       200      Apartment2896Private room1  112FALSETRUEAmager Vestmoderate12.655.71.41e+033.15Amager3.240.00392-0.0953  
1.07e+07https://www.airbnb.com/rooms/10735518352       20130      House20595Private room1  123FALSETRUEVanlsemoderate12.555.71.41e+033.15Nordvest3.240.00976-0.0892  
1.08e+07https://www.airbnb.com/rooms/10803557498       1150200      Apartment1293Private room1  112FALSETRUEsterbromoderate12.655.72.94e+033.47Brokvarterer3.260.003290.205   
1.08e+07https://www.airbnb.com/rooms/108202401e+03       2250250      Other28692Private room1  124FALSETRUEVesterbro-Kongens Enghaveflexible12.555.74.26e+033.63Brokvarterer3.430.0124 0.202   
1.08e+07https://www.airbnb.com/rooms/10830961292       11750      House4697Private room1  111TRUETRUEFrederiksbergflexible12.555.71.34e+033.13Brokvarterer3.260.00696-0.132   
1.09e+07https://www.airbnb.com/rooms/10854830551       25050      Apartment8096Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.25e+033.35Brokvarterer3.330.004320.0254  
1.1e+07 https://www.airbnb.com/rooms/10964802199       1350150      Condominium1597Private room1  122FALSETRUEVanlsestrict_14_with_grace_period12.555.71.75e+033.24Nordvest3.180.006250.0577  
1.1e+07 https://www.airbnb.com/rooms/11004380339       12000      Apartment17100Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.56e+033.19Brokvarterer3.290.00357-0.101   
1.1e+07 https://www.airbnb.com/rooms/11014124299       1200200      Apartment3794Private room1  111TRUEFALSENrrebrostrict_14_with_grace_period12.555.72.2e+03 3.34Brokvarterer3.280.004340.0599  
1.1e+07 https://www.airbnb.com/rooms/11039572286       1150150      Apartment3795Private room1.5002FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.89e+033.28Brokvarterer3.270.0046 0.00674 
1.12e+07https://www.airbnb.com/rooms/11159048425       135100      Apartment4195Private room1  102FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.14e+033.33Brokvarterer3.270.003310.0579  
1.12e+07https://www.airbnb.com/rooms/11183475551       25000      Apartment2697Private room1  123FALSEFALSEIndre Bystrict_14_with_grace_period12.655.72.7e+03 3.43Center3.460.00435-0.0257  
1.12e+07https://www.airbnb.com/rooms/11185777452       100      Apartment1997Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.71.81e+033.26Brokvarterer3.290.00347-0.0319  
1.12e+07https://www.airbnb.com/rooms/11246996299       10199      Apartment2596Private room1  112FALSETRUEAmager Vestflexible12.655.71.99e+033.3 Amager3.220.003770.0828  
1.12e+07https://www.airbnb.com/rooms/11247498698       100      Apartment2095Private room1  122FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.62.79e+033.45Brokvarterer3.290.003440.159   
1.13e+07https://www.airbnb.com/rooms/11250500399       134150      Apartment5093Private room1  012FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.23e+033.35Brokvarterer3.240.004070.105   
1.13e+07https://www.airbnb.com/rooms/11285942239       12320      Apartment1193Private room1  111FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.19e+033.07Amager3.220.00425-0.145   
1.13e+07https://www.airbnb.com/rooms/11286328239       12320      Apartment1090Private room1  111FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.19e+033.07Amager3.220.0043 -0.141   
1.13e+07https://www.airbnb.com/rooms/11307997452       2150100      Apartment2291Private room1.5112FALSEFALSEVanlsemoderate12.555.71.96e+033.29Nordvest3.170.005140.119   
1.13e+07https://www.airbnb.com/rooms/11314601478       20200      Apartment14192Private room1  245FALSETRUEAmager Vestflexible12.655.61.91e+033.28Amager3.380.00642-0.103   
1.13e+07https://www.airbnb.com/rooms/11339117452       1350200      Apartment4398Private room1  112TRUETRUEAmager Vestmoderate12.655.72.96e+033.47Amager3.280.004570.192   
1.13e+07https://www.airbnb.com/rooms/11348404239       2150180      Apartment11598Private room1  112TRUETRUEFrederiksbergmoderate12.555.71.11e+033.04Brokvarterer3.320.00474-0.274   
1.14e+07https://www.airbnb.com/rooms/11394770399       1300100      Apartment1196Private room1  113FALSETRUENrrebromoderate12.655.72.3e+03 3.36Brokvarterer3.3 0.003520.0574  
1.14e+07https://www.airbnb.com/rooms/11437497492       100      Apartment12396Private room1  112FALSETRUEIndre Byflexible12.655.71.97e+033.29Center3.390.00542-0.0973  
1.15e+07https://www.airbnb.com/rooms/11488892452       100      Apartment2499Private room1  111TRUETRUEsterbrostrict_14_with_grace_period12.655.71.81e+033.26Brokvarterer3.290.0044 -0.0289  
1.15e+07https://www.airbnb.com/rooms/11523867272       100      Apartment6299Private room1  111TRUETRUENrrebroflexible12.555.71.09e+033.04Brokvarterer3.250.00419-0.21    
1.17e+07https://www.airbnb.com/rooms/11670005399       100      Apartment2590Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.6e+03 3.2 West3.130.005090.0749  
1.17e+07https://www.airbnb.com/rooms/11694587299       2300100      Apartment1395Private room1  112FALSETRUENrrebromoderate12.555.71.5e+03 3.17Brokvarterer3.270.00327-0.0918  
1.17e+07https://www.airbnb.com/rooms/11713496292       14989      Apartment1096Private room1  112FALSETRUEValbystrict_14_with_grace_period12.555.61.57e+033.2 West3.180.005410.0176  
1.17e+07https://www.airbnb.com/rooms/11717384153       100      Apartment1092Private room1  112FALSETRUENrrebroflexible12.655.7612       2.79Brokvarterer3.240.00307-0.449   
1.18e+07https://www.airbnb.com/rooms/11778686359       1055      Apartment4192Private room1  122FALSEFALSEAmager stflexible12.655.71.66e+033.22Amager3.210.003850.00507 
1.18e+07https://www.airbnb.com/rooms/11832827598       13500      Apartment2996Private room1  112TRUETRUEAmager Vestflexible12.655.72.74e+033.44Amager3.250.004540.191   
1.18e+07https://www.airbnb.com/rooms/11840751365       111188      Apartment8496Private room1  112TRUETRUEAmager stflexible12.655.71.92e+033.28Amager3.260.0048 0.028   
1.19e+07https://www.airbnb.com/rooms/11877577412       11000      Apartment9596Private room1  112TRUETRUEsterbromoderate12.655.71.75e+033.24Brokvarterer3.310.00439-0.0688  
1.19e+07https://www.airbnb.com/rooms/11905167598       3200200      Apartment14100Private room1  335FALSETRUEsterbroflexible12.655.72.59e+033.41Brokvarterer3.450.00441-0.0316  
1.19e+07https://www.airbnb.com/rooms/11943287452       100      Apartment11100Private room1  112FALSEFALSEIndre Bymoderate12.655.71.81e+033.26Center3.4 0.00427-0.147   
1.19e+07https://www.airbnb.com/rooms/11943920292       1100100      Apartment3094Private room1  112FALSEFALSEBispebjergflexible12.555.71.67e+033.22Nordvest3.120.004560.0973  
1.2e+07 https://www.airbnb.com/rooms/11952878352       2050      Apartment2195Private room1  122FALSEFALSEsterbroflexible12.655.71.41e+033.15Brokvarterer3.240.00305-0.0925  
1.2e+07 https://www.airbnb.com/rooms/11988168598       2200200      Apartment8696Private room1  112TRUEFALSENrrebromoderate12.655.72.59e+033.41Brokvarterer3.310.004270.104   
1.2e+07 https://www.airbnb.com/rooms/12006948399       1500      Apartment12100Private room1  112FALSETRUEAmager Vestflexible12.655.71.65e+033.22Amager3.220.00386-0.0031  
1.2e+07 https://www.airbnb.com/rooms/12028968299       20100      House3793Private room0.5112FALSETRUEVanlsemoderate12.555.71.2e+03 3.08Nordvest3.140.00762-0.0663  
1.2e+07 https://www.airbnb.com/rooms/12031371299       1150100      Apartment12598Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.61.75e+033.24Brokvarterer3.320.00546-0.0767  
1.21e+07https://www.airbnb.com/rooms/12067053698       1500200      Apartment7995Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.74.09e+033.61Center3.460.004780.154   
1.21e+07https://www.airbnb.com/rooms/12091627399       1150100      Apartment14198Private room1  111TRUETRUEsterbromoderate12.655.72.15e+033.33Brokvarterer3.290.005430.0457  
1.21e+07https://www.airbnb.com/rooms/12148640492       2232232      Condominium8292Private room1  133FALSETRUEAmager stflexible12.655.72.2e+03 3.34Amager3.270.005980.0731  
1.22e+07https://www.airbnb.com/rooms/12160191332       100      Apartment10494Private room1  112FALSETRUEsterbroflexible12.655.71.33e+033.12Brokvarterer3.250.00442-0.131   
1.22e+07https://www.airbnb.com/rooms/12194944365       1149186      Apartment90100Private room1  112FALSETRUEIndre Byflexible12.655.72.35e+033.37Center3.390.00478-0.0193  
1.22e+07https://www.airbnb.com/rooms/12226772372       1129129      Apartment3096Private room1  112TRUETRUEVanlsestrict_14_with_grace_period12.555.72.13e+033.33Nordvest3.2 0.005440.126   
1.22e+07https://www.airbnb.com/rooms/12245032352       2080      Apartment1096Private room1  112FALSETRUEAmager Vestmoderate12.655.71.41e+033.15Amager3.240.00394-0.0923  
1.23e+07https://www.airbnb.com/rooms/12330515598       200      Apartment4797Private room1  112FALSETRUEIndre Bymoderate12.655.72.39e+033.38Center3.410.00418-0.0278  
1.23e+07https://www.airbnb.com/rooms/12340792498       11000      Apartment1596Private room1  122FALSETRUEAmager stflexible12.655.72.09e+033.32Amager3.210.003750.106   
1.24e+07https://www.airbnb.com/rooms/12358255498       1150100      Apartment27799Private room1.5112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.54e+033.41Brokvarterer3.370.009680.0323  
1.24e+07https://www.airbnb.com/rooms/12375571299       1080      Apartment41100Private room1  112FALSEFALSEAmager stmoderate12.655.71.52e+033.18Amager3.250.00406-0.0707  
1.24e+07https://www.airbnb.com/rooms/12420277598       2100200      Apartment4898Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.49e+033.4 Brokvarterer3.250.003310.147   
1.25e+07https://www.airbnb.com/rooms/12462790452       12500      Apartment2098Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.06e+033.31Brokvarterer3.270.004070.0391  
1.25e+07https://www.airbnb.com/rooms/12487263438       100      Apartment5493Private room1  112FALSEFALSEFrederiksbergmoderate12.555.71.75e+033.24Brokvarterer3.270.00343-0.0275  
1.26e+07https://www.airbnb.com/rooms/12575485299       1250150      Apartment1292Private room1  121FALSETRUEVanlsemoderate12.555.72.05e+033.31Nordvest3.110.004820.201   
1.27e+07https://www.airbnb.com/rooms/12658283797       11500      Apartment10100Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.73.34e+033.52Brokvarterer3.250.0032 0.278   
1.27e+07https://www.airbnb.com/rooms/12719515551       2250150      Apartment5999Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.45e+033.39Brokvarterer3.280.003570.11    
1.27e+07https://www.airbnb.com/rooms/12734192438       1160100      Apartment3898Private room1  112TRUEFALSENrrebromoderate12.655.72.31e+033.36Brokvarterer3.3 0.004050.0597  
1.28e+07https://www.airbnb.com/rooms/12776104996       100      Apartment5294Private room1  112FALSEFALSEIndre Bymoderate12.655.73.98e+033.6 Center3.4 0.004190.197   
1.28e+07https://www.airbnb.com/rooms/12815659352       2120200      Apartment2898Private room1  123FALSEFALSEBrnshj-Husummoderate12.555.71.53e+033.18West3.2 0.0054 -0.0178  
1.28e+07https://www.airbnb.com/rooms/12831689578       1250100      Apartment3292Private room1  112FALSETRUENrrebromoderate12.555.72.96e+033.47Brokvarterer3.270.003280.206   
1.29e+07https://www.airbnb.com/rooms/12869453312       1500      Apartment3396Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.3e+03 3.11Amager3.260.00411-0.15    
1.29e+07https://www.airbnb.com/rooms/12885262339       115050      Condominium1696Private room1  112FALSETRUEValbyflexible12.555.71.71e+033.23West3.150.006430.0852  
1.29e+07https://www.airbnb.com/rooms/12919829797       100      Apartment1597Private room1  112FALSETRUEIndre Byflexible12.655.73.19e+033.5 Center3.370.004030.129   
1.29e+07https://www.airbnb.com/rooms/12927740498       100      House1391Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.99e+033.3 West3.150.006690.153   
1.29e+07https://www.airbnb.com/rooms/12931088531       12520      Apartment1791Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.38e+033.38Brokvarterer3.280.003480.095   
1.29e+07https://www.airbnb.com/rooms/12947491591       11000      Apartment8897Private room1  112TRUEFALSEIndre Bystrict_14_with_grace_period12.655.72.46e+033.39Center3.460.00485-0.0701  
1.3e+07 https://www.airbnb.com/rooms/12984776478       11250      Apartment5498Private room1  112FALSETRUENrrebromoderate12.655.72.04e+033.31Brokvarterer3.280.003480.0314  
1.3e+07 https://www.airbnb.com/rooms/13011604332       1600      Apartment4596Private room1  112FALSETRUEAmager Vestflexible12.655.61.39e+033.14Amager3.220.0039 -0.0775  
1.3e+07 https://www.airbnb.com/rooms/13028543239       10120      House11691Private room1.5122FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.44e+033.16Amager3.320.00733-0.159   
1.31e+07https://www.airbnb.com/rooms/13077959538       12500      Apartment6999Private room1.5102TRUETRUEFrederiksbergmoderate12.555.72.4e+03 3.38Brokvarterer3.340.004580.0431  
1.31e+07https://www.airbnb.com/rooms/13086664651       220050      Apartment1395Private room1  112FALSETRUEsterbromoderate12.655.72.8e+03 3.45Brokvarterer3.270.003270.181   
1.31e+07https://www.airbnb.com/rooms/13090687452       1050      Apartment4397Private room1  112FALSETRUEAmager stmoderate12.655.72.01e+033.3 Amager3.250.004  0.055   
1.31e+07https://www.airbnb.com/rooms/13096414551       1050      Apartment13398Private room1  112TRUETRUEAmager Vestmoderate12.655.72.4e+03 3.38Amager3.290.005590.0871  
1.31e+07https://www.airbnb.com/rooms/13106453252       100      Apartment42190Private room1  112FALSETRUEBrnshj-Husummoderate12.555.71.01e+033   West3.220.0158 -0.219   
1.31e+07https://www.airbnb.com/rooms/13120964272       1200300      Apartment3598Private room1  101TRUETRUEsterbrostrict_14_with_grace_period12.655.72.49e+033.4 Brokvarterer3.290.004330.109   
1.31e+07https://www.airbnb.com/rooms/13142897698       1350750      Apartment1596Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.76.14e+033.79Brokvarterer3.280.004480.508   
1.31e+07https://www.airbnb.com/rooms/13149351478       110050      Condominium1098Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.21e+033.34Brokvarterer3.280.005160.0623  
1.32e+07https://www.airbnb.com/rooms/13151978292       1150150      House6095Private room1.5111TRUETRUEVanlsemoderate12.555.71.92e+033.28Nordvest3.2 0.007460.0856  
1.32e+07https://www.airbnb.com/rooms/13242071498       210050      Apartment1795Private room1  112FALSETRUENrrebromoderate12.555.72.09e+033.32Brokvarterer3.270.003260.0532  
1.33e+07https://www.airbnb.com/rooms/13259839372       197298      Apartment1395Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.78e+033.44Brokvarterer3.240.003060.204   
1.33e+07https://www.airbnb.com/rooms/13273224372       12000      Condominium2796Private room1  112FALSETRUENrrebromoderate12.655.71.69e+033.23Brokvarterer3.280.0051 -0.0554  
1.33e+07https://www.airbnb.com/rooms/13274718412       20125      Apartment6790Private room1  122FALSETRUENrrebroflexible12.655.71.65e+033.22Brokvarterer3.240.00358-0.0255  
1.33e+07https://www.airbnb.com/rooms/13275213399       1500      Apartment1198Private room1  111FALSEFALSEsterbroflexible12.655.71.65e+033.22Brokvarterer3.210.003240.00899 
1.33e+07https://www.airbnb.com/rooms/13278223412       100      Apartment44100Private room1  111FALSETRUEFrederiksbergflexible12.555.71.65e+033.22Brokvarterer3.220.003450.00127 
1.33e+07https://www.airbnb.com/rooms/13279240485       13000      Condominium3798Private room1  102TRUEFALSEVesterbro-Kongens Enghaveflexible12.555.72.24e+033.35Brokvarterer3.290.0056 0.0607  
1.33e+07https://www.airbnb.com/rooms/13314653359       25050      Apartment2390Private room1  113FALSETRUEAmager stmoderate12.655.71.49e+033.17Amager3.270.00411-0.0991  
1.33e+07https://www.airbnb.com/rooms/13336263306       12300      Apartment6898Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.45e+033.16Brokvarterer3.270.00423-0.111   
1.33e+07https://www.airbnb.com/rooms/13339186751       13000      Condominium2295Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.73.3e+03 3.52Brokvarterer3.330.0058 0.19    
1.34e+07https://www.airbnb.com/rooms/13351806897       13000      Apartment5596Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.73.89e+033.59Brokvarterer3.3 0.004040.285   
1.34e+07https://www.airbnb.com/rooms/13367426797       100      Apartment13097Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.73.19e+033.5 Brokvarterer3.320.005050.185   
1.34e+07https://www.airbnb.com/rooms/13368404525       30100      Apartment9798Private room1  233TRUEFALSEValbyflexible12.555.72.1e+03 3.32West3.260.006330.0605  
1.34e+07https://www.airbnb.com/rooms/13421958365       21000      Apartment12793Private room1  102FALSETRUEsterbrostrict_14_with_grace_period12.655.71.56e+033.19Brokvarterer3.3 0.00512-0.109   
1.34e+07https://www.airbnb.com/rooms/13424583306       100      Apartment4995Private room1  112FALSETRUEBispebjergflexible12.555.71.22e+033.09Nordvest3.130.00472-0.0417  
1.34e+07https://www.airbnb.com/rooms/13448150399       21330      Apartment3996Private room1  112TRUETRUENrrebromoderate12.655.71.73e+033.24Brokvarterer3.3 0.00405-0.064   
1.35e+07https://www.airbnb.com/rooms/13470008385       12200      Apartment9596Private room1  111FALSETRUENrrebrostrict_14_with_grace_period12.555.71.76e+033.25Brokvarterer3.260.00447-0.0193  
1.35e+07https://www.airbnb.com/rooms/13493970744       2186112      Apartment7796Private room0.5112TRUETRUEIndre Byflexible12.655.73.16e+033.5 Center3.390.005260.114   
1.35e+07https://www.airbnb.com/rooms/13500450372       1200150      Apartment1598Private room1  121FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.29e+033.36Brokvarterer3.250.003640.106   
1.35e+07https://www.airbnb.com/rooms/13503701585       1490      Apartment2596Private room1  112FALSEFALSEIndre Bymoderate12.655.72.39e+033.38Center3.4 0.00413-0.0233  
1.35e+07https://www.airbnb.com/rooms/13526389399       13000      Apartment7497Private room1  112TRUETRUEAmager stflexible12.655.61.9e+03 3.28Amager3.260.004690.0223  
1.35e+07https://www.airbnb.com/rooms/13527804325       12000      Apartment23690Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.5e+03 3.18Brokvarterer3.3 0.00854-0.122   
1.35e+07https://www.airbnb.com/rooms/13544808498       11000      Apartment1897Private room1  111TRUEFALSEFrederiksbergflexible12.555.72.09e+033.32Brokvarterer3.240.004190.0838  
1.36e+07https://www.airbnb.com/rooms/13579614399       11200      Apartment3197Private room1  112FALSETRUENrrebromoderate12.555.71.72e+033.23Brokvarterer3.270.00328-0.0379  
1.36e+07https://www.airbnb.com/rooms/13600699299       1330      Apartment2594Private room1  112FALSEFALSEValbymoderate12.555.71.23e+033.09West3.160.00524-0.0707  
1.36e+07https://www.airbnb.com/rooms/136121161e+03       12000      Apartment2893Private room1.5122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.74.21e+033.62Brokvarterer3.310.003980.313   
1.36e+07https://www.airbnb.com/rooms/13618888279       12500      Apartment3598Private room1  111FALSETRUEAmager ststrict_14_with_grace_period12.655.71.37e+033.14Amager3.230.00429-0.0951  
1.36e+07https://www.airbnb.com/rooms/13635666399       100      Apartment1092Private room1  122FALSEFALSEVanlseflexible12.555.71.6e+03 3.2 Nordvest3.120.004520.0842  
1.36e+07https://www.airbnb.com/rooms/13639178399       1150180      Apartment5696Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.47e+033.39Brokvarterer3.210.0035 0.18    
1.37e+07https://www.airbnb.com/rooms/13650972292       100      Apartment1090Private room1  112FALSETRUEIndre Byflexible12.655.71.17e+033.07Center3.360.00405-0.297   
1.37e+07https://www.airbnb.com/rooms/13651354399       100      Apartment1098Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.6e+03 3.2 Brokvarterer3.320.00441-0.115   
1.37e+07https://www.airbnb.com/rooms/13655127332       1660      Apartment35094Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.39e+033.14Brokvarterer3.310.0127 -0.161   
1.37e+07https://www.airbnb.com/rooms/13662769352       1330      Apartment3992Private room1  112FALSETRUEValbyflexible12.555.71.44e+033.16West3.130.005140.0255  
1.37e+07https://www.airbnb.com/rooms/13662971199       2280250      Other2499Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.08e+033.03Amager3.340.00799-0.308   
1.37e+07https://www.airbnb.com/rooms/13683923412       237224      Condominium19092Private room1  112FALSETRUEValbymoderate12.555.71.68e+033.23West3.2 0.008990.0284  
1.37e+07https://www.airbnb.com/rooms/13690875352       10200      Other3598Private room1  112FALSEFALSEBrnshj-Husummoderate12.555.72.21e+033.34West3.240.0085 0.103   
1.37e+07https://www.airbnb.com/rooms/13696780339       19999      Apartment14297Private room1  112TRUETRUEValbystrict_14_with_grace_period12.555.71.85e+033.27West3.230.006920.0351  
1.37e+07https://www.airbnb.com/rooms/13710505432       1150150      Apartment4592Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.48e+033.39Brokvarterer3.250.003680.143   
1.37e+07https://www.airbnb.com/rooms/13725163292       100      Apartment19297Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.17e+033.07Brokvarterer3.270.0072 -0.205   
1.37e+07https://www.airbnb.com/rooms/13728573332       1500      Apartment1095Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.61.38e+033.14Brokvarterer3.240.00306-0.1     
1.37e+07https://www.airbnb.com/rooms/13741272299       215050      Apartment1096Private room1  112FALSETRUENrrebroflexible12.555.71.35e+033.13Brokvarterer3.240.00308-0.112   
1.37e+07https://www.airbnb.com/rooms/13744901299       20200      Apartment1795Private room1  122FALSETRUEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer3.240.00305-0.163   
1.38e+07https://www.airbnb.com/rooms/13762092498       100      Apartment3895Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.99e+033.3 Brokvarterer3.290.003470.00958 
1.38e+07https://www.airbnb.com/rooms/13763391312       1100200      Apartment5398Private room1  112TRUETRUEValbymoderate12.555.72.15e+033.33West3.2 0.0058 0.132   
1.38e+07https://www.airbnb.com/rooms/13778831299       100      Apartment1395Private room1  112FALSETRUEAmager stflexible12.655.71.2e+03 3.08Amager3.210.00374-0.135   
1.38e+07https://www.airbnb.com/rooms/13799505352       1200250      Condominium1596Private room1  112TRUEFALSEFrederiksbergmoderate12.555.72.61e+033.42Brokvarterer3.310.005740.106   
1.38e+07https://www.airbnb.com/rooms/13811146372       11340      Townhouse12798Private room1.5112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.62e+033.21Brokvarterer3.360.009  -0.149   
1.38e+07https://www.airbnb.com/rooms/13813273438       11000      Apartment14292Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.85e+033.27Brokvarterer3.280.00546-0.0171  
1.39e+07https://www.airbnb.com/rooms/13869906392       1075      Apartment8097Private room1  112TRUETRUEAmager stmoderate12.655.71.87e+033.27Amager3.280.00473-0.0121  
1.39e+07https://www.airbnb.com/rooms/13870460452       1350      Apartment1297Private room1  111FALSETRUEAmager Vestmoderate12.655.71.84e+033.27Amager3.210.004070.0589  
1.39e+07https://www.airbnb.com/rooms/13875834153       15035      Apartment3393Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.655.7802       2.9 Brokvarterer3.290.00345-0.382   
1.39e+07https://www.airbnb.com/rooms/13881364531       11000      Apartment1096Private room1  111TRUEFALSENrrebromoderate12.655.72.22e+033.35Brokvarterer3.260.004390.0862  
1.39e+07https://www.airbnb.com/rooms/13890786631       11120      Apartment2793Private room1  122FALSEFALSEFrederiksbergmoderate12.555.72.64e+033.42Brokvarterer3.270.003250.154   
1.39e+07https://www.airbnb.com/rooms/13916569525       11980      Apartment14399Private room1  112FALSETRUEIndre Bymoderate12.655.72.3e+03 3.36Center3.430.00592-0.0642  
1.39e+07https://www.airbnb.com/rooms/13920288352       11500      Condominium7499Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.61.56e+033.19Brokvarterer3.290.00573-0.0956  
1.39e+07https://www.airbnb.com/rooms/13925405498       21000      Apartment1193Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.09e+033.32Brokvarterer3.240.003060.0838  
1.4e+07 https://www.airbnb.com/rooms/13954987399       1332100      Apartment3298Private room1  122FALSETRUENrrebrostrict_14_with_grace_period12.655.72.33e+033.37Brokvarterer3.290.0035 0.0744  
1.4e+07 https://www.airbnb.com/rooms/13966376651       2100150      Condominium7294Private room1  124TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.7e+03 3.43Brokvarterer3.390.006030.0429  
1.4e+07 https://www.airbnb.com/rooms/13973655598       1200300      Apartment6597Private room1  102FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.79e+033.58Center3.430.0044 0.15    
1.4e+07 https://www.airbnb.com/rooms/13987158345       2200200      Apartment8190Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.58e+033.2 Brokvarterer3.3 0.00433-0.102   
1.4e+07 https://www.airbnb.com/rooms/13993300299       11500      Other6099Private room1  112TRUETRUEValbyflexible12.555.71.35e+033.13West3.250.00869-0.12    
1.4e+07 https://www.airbnb.com/rooms/14017539651       100      Apartment16695Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.6e+03 3.42Brokvarterer3.270.006310.15    
1.41e+07https://www.airbnb.com/rooms/14061328365       1200200      Apartment6294Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.46e+033.39Brokvarterer3.270.003530.117   
1.41e+07https://www.airbnb.com/rooms/14061803485       1224186      Apartment2893Private room1  112FALSEFALSEIndre Bymoderate12.655.72.91e+033.46Center3.4 0.004120.0655  
1.41e+07https://www.airbnb.com/rooms/14071367498       12000      Apartment2296Private room1  223FALSETRUEAmager stmoderate12.655.72.19e+033.34Amager3.320.004220.0165  
1.41e+07https://www.airbnb.com/rooms/14080873385       1175160      Apartment8091Private room1  102FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.36e+033.37Brokvarterer3.270.003880.0991  
1.41e+07https://www.airbnb.com/rooms/14108544365       16745      Apartment2697Private room1  112FALSETRUEsterbroflexible12.655.71.71e+033.23Brokvarterer3.240.0031 -0.0124  
1.41e+07https://www.airbnb.com/rooms/14108954392       12500      Apartment1196Private room1  101FALSEFALSEVanlsemoderate12.555.71.82e+033.26Nordvest3.120.004820.144   
1.41e+07https://www.airbnb.com/rooms/14110830352       1200200      Apartment4198Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.41e+033.38Brokvarterer3.3 0.004040.0769  
1.41e+07https://www.airbnb.com/rooms/14141060299       100      Apartment1697Private room1  112FALSEFALSENrrebroflexible12.555.71.2e+03 3.08Brokvarterer3.240.00308-0.165   
1.42e+07https://www.airbnb.com/rooms/14159068452       2200150      Apartment1195Private room1  112FALSETRUENrrebromoderate12.555.72.01e+033.3 Brokvarterer3.270.003280.0364  
1.42e+07https://www.airbnb.com/rooms/14176447399       2200150      Apartment1198Private room1  113FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.8e+03 3.25Brokvarterer3.320.00372-0.0706  
1.42e+07https://www.airbnb.com/rooms/14234746266       1050      Apartment2496Private room1  112FALSEFALSEAmager Vestflexible12.655.61.26e+033.1 Amager3.220.00376-0.115   
1.42e+07https://www.airbnb.com/rooms/14243103385       100      Apartment1494Private room1  112FALSETRUENrrebromoderate12.555.71.54e+033.19Brokvarterer3.270.00327-0.078   
1.43e+07https://www.airbnb.com/rooms/14258650272       1150150      Condominium2392Private room1  112FALSETRUEVanlsemoderate12.555.71.84e+033.26Nordvest3.160.006090.104   
1.43e+07https://www.airbnb.com/rooms/14268783651       12000      Townhouse17100Private room1  112TRUETRUEAmager Vestmoderate12.655.72.8e+03 3.45Amager3.290.008670.159   
1.43e+07https://www.airbnb.com/rooms/14279864751       1147200      Apartment7598Private room1  113TRUETRUEIndre Bymoderate12.655.73.95e+033.6 Center3.480.004820.119   
1.43e+07https://www.airbnb.com/rooms/14298999551       2250350      Apartment26796Private room1  122TRUEFALSEIndre Byflexible12.655.72.45e+033.39Center3.450.00935-0.0554  
1.44e+07https://www.airbnb.com/rooms/14401476498       100      Apartment8298Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.71.99e+033.3 Brokvarterer3.310.00422-0.0125  
1.44e+07https://www.airbnb.com/rooms/14401781272       11000      Apartment1292Private room1  112FALSETRUEsterbromoderate12.655.71.19e+033.07Brokvarterer3.260.0033 -0.188   
1.44e+07https://www.airbnb.com/rooms/14413587432       16666      Apartment39292Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.06e+033.31Brokvarterer3.350.0141 -0.0327  
1.45e+07https://www.airbnb.com/rooms/14460394458       100      Apartment4499Private room1  111TRUETRUEsterbrostrict_14_with_grace_period12.655.71.83e+033.26Brokvarterer3.290.00431-0.0265  
1.45e+07https://www.airbnb.com/rooms/14466298498       100      Apartment1698Private room1  112FALSETRUENrrebromoderate12.655.71.99e+033.3 Brokvarterer3.270.0033 0.0282  
1.45e+07https://www.airbnb.com/rooms/14502121292       100      Apartment1098Private room1  122FALSEFALSEAmager stflexible12.655.71.17e+033.07Amager3.220.0038 -0.149   
1.45e+07https://www.airbnb.com/rooms/14507458399       100      Townhouse1695Private room1  111TRUETRUEIndre Bystrict_14_with_grace_period12.655.71.6e+03 3.2 Center3.420.00909-0.22    
1.45e+07https://www.airbnb.com/rooms/14549448698       2150100      Apartment9998Private room1  123FALSEFALSEIndre Bystrict_14_with_grace_period12.655.72.94e+033.47Center3.470.00503-0.00278 
1.46e+07https://www.airbnb.com/rooms/14552618352       10350      Condominium1898Private room1  111TRUEFALSEFrederiksbergflexible12.555.72.81e+033.45Brokvarterer3.250.005770.198   
1.46e+07https://www.airbnb.com/rooms/14571146472       111058      Apartment7796Private room1  123FALSETRUEsterbromoderate12.655.72.23e+033.35Brokvarterer3.310.003980.0335  
1.46e+07https://www.airbnb.com/rooms/14607874399       100      Apartment31598Private room1  112TRUEFALSEFrederiksbergmoderate12.555.71.6e+03 3.2 Brokvarterer3.350.0107 -0.148   
1.46e+07https://www.airbnb.com/rooms/14643026312       100      Apartment1691Private room1  112FALSETRUEVanlseflexible12.555.71.25e+033.1 Nordvest3.120.00453-0.0224  
1.47e+07https://www.airbnb.com/rooms/146641561.1e+03 11000      Apartment20193Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.74.51e+033.65Center3.450.007570.208   
1.47e+07https://www.airbnb.com/rooms/14712258485       10100      Apartment10799Private room1.5112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.34e+033.37Brokvarterer3.310.004980.0547  
1.47e+07https://www.airbnb.com/rooms/14722243551       1300500      Apartment2598Private room1  111FALSETRUEAmager Vestmoderate12.655.74.5e+03 3.65Amager3.210.004070.443   
1.47e+07https://www.airbnb.com/rooms/14726786498       100      Apartment3899Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.99e+033.3 Center3.390.00442-0.0912  
1.47e+07https://www.airbnb.com/rooms/14737946598       1200200      Apartment5196Private room1  112TRUETRUEIndre Bymoderate12.655.73.39e+033.53Center3.440.004650.0951  
1.48e+07https://www.airbnb.com/rooms/14754619412       115080      Apartment1499Private room1  112FALSETRUEsterbroflexible12.655.72.12e+033.33Brokvarterer3.250.003150.0807  
1.48e+07https://www.airbnb.com/rooms/14765243299       150100      Apartment1193Private room1  112FALSEFALSENrrebroflexible12.555.71.65e+033.22Brokvarterer3.240.00306-0.0204  
1.48e+07https://www.airbnb.com/rooms/14779274206       1900      Apartment1196Private room1  112FALSETRUEBrnshj-Husummoderate12.555.7914       2.96West3.160.00526-0.2     
1.48e+07https://www.airbnb.com/rooms/14780231498       100      Condominium2295Private room1  122FALSEFALSEsterbroflexible12.655.71.99e+033.3 Brokvarterer3.250.005040.0456  
1.48e+07https://www.airbnb.com/rooms/14782133372       20200      Apartment2697Private room1  112FALSEFALSEsterbroflexible12.655.71.49e+033.17Brokvarterer3.240.0031 -0.072   
1.48e+07https://www.airbnb.com/rooms/14794890352       11000      Apartment1499Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.51e+033.18Brokvarterer3.250.00315-0.0668  
1.48e+07https://www.airbnb.com/rooms/14822247239       100      Apartment1098Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.6956       2.98Brokvarterer3.230.00345-0.254   
1.48e+07https://www.airbnb.com/rooms/14839250299       1254195      Apartment5797Private room1.5112FALSEFALSENrrebroflexible12.655.72.23e+033.35Brokvarterer3.280.003980.0718  
1.49e+07https://www.airbnb.com/rooms/14899205412       100      Apartment4596Private room1  123FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.65e+033.22Brokvarterer3.280.00345-0.0655  
1.49e+07https://www.airbnb.com/rooms/14911605598       12000      Apartment12697Private room1  102TRUETRUEsterbromoderate12.655.72.59e+033.41Brokvarterer3.320.004960.0957  
1.49e+07https://www.airbnb.com/rooms/14913797591       10100      Condominium2799Private room1.5112TRUETRUEIndre Bymoderate12.655.72.76e+033.44Center3.470.00642-0.0326  
1.5e+07 https://www.airbnb.com/rooms/14956541452       1200200      Apartment6597Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.81e+033.45Brokvarterer3.330.0042 0.122   
1.5e+07 https://www.airbnb.com/rooms/14961774252       175100      Other9896Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.48e+033.17Brokvarterer3.350.00821-0.178   
1.5e+07 https://www.airbnb.com/rooms/14962911226       1149134      Apartment6397Private room1  113TRUETRUEVanlsemoderate12.555.71.59e+033.2 Nordvest3.230.00546-0.0256  
1.5e+07 https://www.airbnb.com/rooms/14968304352       100      Apartment10100Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.41e+033.15Brokvarterer3.250.0032 -0.0972  
1.5e+07 https://www.airbnb.com/rooms/14968916246       1295250      Apartment2798Private room1.5111TRUETRUEAmager ststrict_14_with_grace_period12.655.72.28e+033.36Amager3.290.005320.0725  
1.5e+07 https://www.airbnb.com/rooms/14976273299       100      Apartment5596Private room1  111FALSETRUEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer3.210.00349-0.135   
1.5e+07 https://www.airbnb.com/rooms/15034625452       100      Apartment5699Private room1  112FALSETRUEIndre Byflexible12.655.71.81e+033.26Center3.380.00423-0.127   
1.5e+07 https://www.airbnb.com/rooms/15047956272       1200100      Apartment1398Private room1  111FALSETRUEBispebjergmoderate12.555.71.69e+033.23Nordvest3.120.004850.109   
1.51e+07https://www.airbnb.com/rooms/15118238372       11500      Apartment1795Private room1  111FALSEFALSEFrederiksbergmoderate12.555.71.64e+033.21Brokvarterer3.230.00339-0.0171  
1.51e+07https://www.airbnb.com/rooms/15120983392       23980      Apartment1193Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.61e+033.21Brokvarterer3.280.00348-0.0765  
1.51e+07https://www.airbnb.com/rooms/15141459784       1300900      Apartment1098Private room1  101FALSEFALSENrrebroflexible12.655.77.04e+033.85Brokvarterer3.210.003240.64    
1.51e+07https://www.airbnb.com/rooms/15142252332       15050      Apartment6396Private room1  112FALSETRUEBispebjergflexible12.555.71.58e+033.2 Nordvest3.130.004910.065   
1.52e+07https://www.airbnb.com/rooms/15191908551       13000      Apartment16394Private room1  112FALSETRUEIndre Bymoderate12.655.72.5e+03 3.4 Center3.420.00641-0.0238  
1.52e+07https://www.airbnb.com/rooms/15205440651       10100      Apartment3694Private room1.5111TRUEFALSEIndre Bymoderate12.655.73e+03       3.48Center3.420.005290.0569  
1.52e+07https://www.airbnb.com/rooms/15227844239       100      Apartment1595Private room1  112FALSETRUEBrnshj-Husumflexible12.555.7956       2.98West3.130.00506-0.153   
1.52e+07https://www.airbnb.com/rooms/15233650199       14075      Apartment2396Private room1  111FALSEFALSEsterbroflexible12.655.71.14e+033.06Brokvarterer3.210.0032 -0.151   
1.53e+07https://www.airbnb.com/rooms/15266664498       2300150      Apartment1096Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.29e+033.36Brokvarterer3.290.003490.074   
1.53e+07https://www.airbnb.com/rooms/15272111259       2300150      Apartment1398Private room1  112FALSETRUENrrebromoderate12.555.71.34e+033.13Brokvarterer3.270.00332-0.145   
1.53e+07https://www.airbnb.com/rooms/15295995299       1300175      Apartment2996Private room1  122FALSETRUEBrnshj-Husummoderate12.555.72.2e+03 3.34West3.160.005260.178   
1.53e+07https://www.airbnb.com/rooms/15307935698       10145      Apartment1590Private room1  123FALSEFALSENrrebroflexible12.655.73.37e+033.53Brokvarterer3.270.003330.258   
1.53e+07https://www.airbnb.com/rooms/15308519352       1080      House3792Private room1  133FALSETRUEValbymoderate12.555.71.73e+033.24West3.210.006880.023   
1.53e+07https://www.airbnb.com/rooms/15319837319       11500      Apartment10100Private room1  112FALSETRUEsterbromoderate12.655.71.43e+033.15Brokvarterer3.270.00339-0.119   
1.54e+07https://www.airbnb.com/rooms/15358544498       1100100      Apartment1899Private room1  112FALSEFALSEAmager Veststrict_14_with_grace_period12.655.62.49e+033.4 Amager3.260.004160.132   
1.54e+07https://www.airbnb.com/rooms/15358672578       2250200      Apartment34100Private room1  112TRUETRUENrrebroflexible12.655.72.56e+033.41Brokvarterer3.280.004030.129   
1.54e+07https://www.airbnb.com/rooms/15372015452       10100      Apartment1497Private room1  112FALSETRUENrrebroflexible12.555.72.21e+033.34Brokvarterer3.240.003090.101   
1.54e+07https://www.airbnb.com/rooms/15376339498       14979      Apartment3096Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.36e+033.37Brokvarterer3.3 0.004090.0721  
1.54e+07https://www.airbnb.com/rooms/15403628419       1100100      Apartment1799Private room1  102FALSEFALSEIndre Byflexible12.655.72.18e+033.34Center3.380.00407-0.0395  
1.54e+07https://www.airbnb.com/rooms/15406430531       24646      Apartment4699Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.17e+033.34Brokvarterer3.250.003320.0858  
1.55e+07https://www.airbnb.com/rooms/15459697492       100      Apartment3097Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.71.97e+033.29Brokvarterer3.250.003120.0487  
1.55e+07https://www.airbnb.com/rooms/15478389352       10190      House4192Private room1  122FALSETRUEBrnshj-Husumflexible12.555.72.17e+033.34West3.150.006750.184   
1.55e+07https://www.airbnb.com/rooms/15530281651       100      Apartment1293Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.6e+03 3.42Brokvarterer3.280.003470.133   
1.55e+07https://www.airbnb.com/rooms/15541581266       100      Apartment1297Private room1  112FALSETRUENrrebromoderate12.655.71.06e+033.03Brokvarterer3.270.0033 -0.242   
1.56e+07https://www.airbnb.com/rooms/15562490299       10186      Apartment1196Private room1  224FALSEFALSENrrebroflexible12.655.71.94e+033.29Brokvarterer3.360.00358-0.0703  
1.56e+07https://www.airbnb.com/rooms/15629002299       11500      Apartment1798Private room1  112FALSETRUENrrebromoderate12.555.71.35e+033.13Brokvarterer3.270.0033 -0.142   
1.56e+07https://www.airbnb.com/rooms/15639989279       110060      Apartment8893Private room1  112FALSETRUEsterbromoderate12.655.71.46e+033.16Brokvarterer3.280.00402-0.114   
1.57e+07https://www.airbnb.com/rooms/15672465498       115035      Apartment3796Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.28e+033.36Brokvarterer3.270.003290.0862  
1.57e+07https://www.airbnb.com/rooms/15712130365       150100      Apartment2098Private room1  112FALSETRUEVanlsestrict_14_with_grace_period12.555.71.91e+033.28Nordvest3.170.004910.107   
1.58e+07https://www.airbnb.com/rooms/15804159259       10250      Apartment8099Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.04e+033.31Amager3.3 0.004870.00388 
1.58e+07https://www.airbnb.com/rooms/15810133498       1750      Apartment6796Private room1  102FALSETRUENrrebrostrict_14_with_grace_period12.655.72.07e+033.32Brokvarterer3.3 0.003790.0194  
1.58e+07https://www.airbnb.com/rooms/15811985591       11500      Condominium180100Private room1  112TRUETRUEAmager Vestmoderate12.655.62.51e+033.4 Amager3.320.007650.0835  
1.58e+07https://www.airbnb.com/rooms/15840536531       100      Apartment13100Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.12e+033.33Brokvarterer3.290.003580.0352  
1.59e+07https://www.airbnb.com/rooms/15851020352       11600      Apartment4696Private room1  111TRUETRUEVanlsestrict_14_with_grace_period12.555.71.57e+033.2 Nordvest3.170.005530.0259  
1.59e+07https://www.airbnb.com/rooms/15862390252       11450      House12399Private room1  112TRUETRUEAmager Vestmoderate12.655.71.15e+033.06Amager3.310.00739-0.251   
1.59e+07https://www.airbnb.com/rooms/15864315352       12000      Apartment5097Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.61e+033.21Brokvarterer3.210.00343-0.00649 
1.59e+07https://www.airbnb.com/rooms/15865253651       11950      Apartment1298Private room1  112FALSETRUENrrebromoderate12.555.72.8e+03 3.45Brokvarterer3.270.003320.177   
1.59e+07https://www.airbnb.com/rooms/15865259352       11450      House2498Private room1  112TRUETRUEAmager Vestmoderate12.655.71.55e+033.19Amager3.290.00689-0.103   
1.61e+07https://www.airbnb.com/rooms/16057794399       150150      Apartment1599Private room1  112FALSETRUEIndre Bymoderate12.655.72.25e+033.35Center3.4 0.00422-0.0523  
1.61e+07https://www.airbnb.com/rooms/16059577452       100      Apartment5595Private room1  112FALSEFALSEAmager Vestmoderate12.655.71.81e+033.26Amager3.250.004090.00998 
1.61e+07https://www.airbnb.com/rooms/16095589385       225050      House12197Private room1  122TRUETRUEBrnshj-Husummoderate12.555.71.79e+033.25West3.230.007770.0239  
1.61e+07https://www.airbnb.com/rooms/16122603399       1100100      Apartment6799Private room2  122TRUETRUEsterbroflexible12.655.72.1e+03 3.32Brokvarterer3.340.00588-0.0154  
1.61e+07https://www.airbnb.com/rooms/16122980498       11000      Other1094Private room1  111FALSETRUEFrederiksbergflexible12.555.72.09e+033.32Brokvarterer3.280.007740.0451  
1.61e+07https://www.airbnb.com/rooms/16127015352       11500      Apartment5199Private room1  112TRUETRUENrrebroflexible12.555.71.56e+033.19Brokvarterer3.280.00401-0.0883  
1.61e+07https://www.airbnb.com/rooms/16128152445       2200200      Apartment1497Private room1  222FALSEFALSENrrebrostrict_14_with_grace_period12.655.71.98e+033.3 Brokvarterer3.330.00399-0.037   
1.62e+07https://www.airbnb.com/rooms/16167492352       100      Apartment1093Private room1  113FALSETRUEFrederiksbergflexible12.555.71.41e+033.15Brokvarterer3.270.0033 -0.124   
1.62e+07https://www.airbnb.com/rooms/16214867797       1250100      Apartment12100Private room1.5112FALSETRUEsterbroflexible12.655.73.84e+033.58Brokvarterer3.270.003780.311   
1.62e+07https://www.airbnb.com/rooms/16248647551       134100      Apartment2099Private room1  112TRUEFALSENrrebromoderate12.555.72.64e+033.42Brokvarterer3.3 0.004180.119   
1.62e+07https://www.airbnb.com/rooms/16249848232       1050      Apartment9590Private room1  112FALSEFALSEBispebjergflexible12.555.71.13e+033.05Nordvest3.130.00544-0.0784  
1.63e+07https://www.airbnb.com/rooms/16255960671       100      Apartment1090Private room1  112FALSEFALSEIndre Byflexible12.655.72.68e+033.43Center3.360.004050.0646  
1.63e+07https://www.airbnb.com/rooms/16280204498       12000      Apartment1093Private room1  124FALSETRUEsterbroflexible12.655.72.19e+033.34Brokvarterer3.310.003850.0324  
1.63e+07https://www.airbnb.com/rooms/16292698299       100      Apartment1893Private room1  111FALSEFALSEFrederiksbergmoderate12.655.71.2e+03 3.08Brokvarterer3.230.0034 -0.151   
1.63e+07https://www.airbnb.com/rooms/16297719365       43500      Apartment1795Private room1  112FALSETRUEsterbromoderate12.655.71.81e+033.26Brokvarterer3.270.00326-0.00969 
1.63e+07https://www.airbnb.com/rooms/16299882352       15050      Apartment2095Private room1  112FALSETRUEFrederiksbergflexible12.555.71.66e+033.22Brokvarterer3.240.00305-0.0214  
1.63e+07https://www.airbnb.com/rooms/16328654299       10200      Condominium2195Private room2  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.72e+03       3.3 Center3.510.00743-0.213   
1.63e+07https://www.airbnb.com/rooms/16347825332       110060      Apartment7695Private room1  123TRUETRUEValbystrict_14_with_grace_period12.555.71.67e+033.22West3.250.00607-0.0322  
1.64e+07https://www.airbnb.com/rooms/16361142299       100      Apartment1297Private room1  112FALSETRUENrrebromoderate12.655.71.2e+03 3.08Brokvarterer3.270.0033 -0.191   
1.64e+07https://www.airbnb.com/rooms/16378183452       1500      Apartment8597Private room1  112TRUETRUEAmager Vestflexible12.655.71.86e+033.27Amager3.260.004810.0116  
1.65e+07https://www.airbnb.com/rooms/16452321399       21000      Apartment5396Private room1.5112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.7e+03 3.23Brokvarterer3.350.00462-0.12    
1.65e+07https://www.airbnb.com/rooms/16501554412       1750      Apartment1596Private room1  112FALSETRUEAmager stmoderate12.655.71.72e+033.24Amager3.240.00392-0.00543 
1.65e+07https://www.airbnb.com/rooms/16503879352       100      Apartment7890Private room1  111FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.41e+033.15Brokvarterer3.250.00415-0.105   
1.65e+07https://www.airbnb.com/rooms/16504907299       110035      Apartment1397Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.44e+033.16Brokvarterer3.290.00349-0.131   
1.65e+07https://www.airbnb.com/rooms/16532377399       1035      Apartment1595Private room1  112FALSETRUENrrebroflexible12.555.71.74e+033.24Brokvarterer3.240.00305-0.000563
1.66e+07https://www.airbnb.com/rooms/16582945345       2200200      Apartment1596Private room1  124FALSETRUEIndre Byflexible12.655.71.58e+033.2 Center3.440.00458-0.246   
1.66e+07https://www.airbnb.com/rooms/16614115166       1100150      Apartment2699Private room1  122FALSETRUEBrnshj-Husumflexible12.555.71.36e+033.13West3.140.00515-0.00526 
1.66e+07https://www.airbnb.com/rooms/16614696199       1250250      Other1597Private room1  112FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.72.05e+033.31West3.250.008590.0562  
1.67e+07https://www.airbnb.com/rooms/16651793259       12000      Apartment12394Private room1  111FALSETRUEIndre Byflexible12.655.71.24e+033.09Center3.350.00552-0.261   
1.67e+07https://www.airbnb.com/rooms/16668759498       12000      Apartment17100Private room1  112FALSETRUEAmager Vestflexible12.655.72.19e+033.34Amager3.220.003860.12    
1.67e+07https://www.airbnb.com/rooms/16669425598       13000      Apartment1698Private room1  112FALSEFALSEsterbrostrict_14_with_grace_period12.655.72.69e+033.43Brokvarterer3.290.003510.14    
1.67e+07https://www.airbnb.com/rooms/16683318372       1750      Apartment5698Private room2  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.61.56e+033.19Brokvarterer3.330.00544-0.137   
1.67e+07https://www.airbnb.com/rooms/16685297651       1070      Apartment3097Private room1  112TRUETRUEAmager stmoderate12.655.72.88e+033.46Amager3.270.004610.185   
1.67e+07https://www.airbnb.com/rooms/16738987399       20100      Apartment19100Private room1  112FALSEFALSEAmager stmoderate12.655.71.6e+03 3.2 Amager3.250.004  -0.0446  
1.68e+07https://www.airbnb.com/rooms/16750323551       11000      Apartment2798Private room1.5112FALSETRUEFrederiksbergmoderate12.555.72.3e+03 3.36Brokvarterer3.3 0.003850.0629  
1.68e+07https://www.airbnb.com/rooms/16753177399       100      House1596Private room1  112FALSETRUEAmager Vestmoderate12.655.71.6e+03 3.2 Amager3.260.00641-0.0576  
1.68e+07https://www.airbnb.com/rooms/16773592458       100      Apartment2396Private room1  122FALSETRUENrrebroflexible12.555.71.83e+033.26Brokvarterer3.240.003070.0201  
1.68e+07https://www.airbnb.com/rooms/16787302498       100      Apartment2698Private room1  112FALSETRUEIndre Bymoderate12.655.71.99e+033.3 Center3.4 0.00416-0.105   
1.68e+07https://www.airbnb.com/rooms/16787456485       20134      Apartment3292Private room1  112FALSETRUENrrebroflexible12.655.71.94e+033.29Brokvarterer3.240.0031 0.0487  
1.68e+07https://www.airbnb.com/rooms/16790616525       227575      Apartment1495Private room1  113FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.38e+033.38Brokvarterer3.3 0.003490.0729  
1.68e+07https://www.airbnb.com/rooms/16800953292       1600250      Townhouse3194Private room1  111TRUETRUEVanlseflexible12.555.72.77e+033.44Nordvest3.130.009250.311   
1.68e+07https://www.airbnb.com/rooms/16809364452       1200300      Apartment8593Private room1  112FALSETRUEAmager Vestmoderate12.655.73.21e+033.51Amager3.250.004540.257   
1.69e+07https://www.airbnb.com/rooms/16875751252       175225      House2293Private room1  122FALSETRUEVanlsemoderate12.555.71.98e+033.3 Nordvest3.170.0069 0.129   
1.69e+07https://www.airbnb.com/rooms/16907209698       10100      Apartment1592Private room1  112FALSETRUENrrebroflexible12.655.73.19e+033.5 Brokvarterer3.240.003060.268   
1.69e+07https://www.airbnb.com/rooms/16944653498       112560      Condominium16299Private room1  112TRUETRUEAmager Vestflexible12.655.72.36e+033.37Amager3.290.007390.0868  
1.7e+07 https://www.airbnb.com/rooms/16971170531       100      Apartment1493Private room1  012FALSETRUEIndre Byflexible12.655.72.12e+033.33Center3.320.004440.00384 
1.7e+07 https://www.airbnb.com/rooms/16991100392       100      Apartment1592Private room0.5111FALSETRUEIndre Byflexible12.655.71.57e+033.2 Center3.310.00468-0.11    
1.7e+07 https://www.airbnb.com/rooms/17009290578       2100450      Apartment11397Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.41e+033.38Brokvarterer3.330.0048 0.0479  
1.7e+07 https://www.airbnb.com/rooms/17033458246       1990      Apartment1093Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.08e+033.03Brokvarterer3.240.00306-0.202   
1.71e+07https://www.airbnb.com/rooms/17116318352       190130      Apartment7393Private room1  111FALSETRUEBispebjergmoderate12.555.72.02e+033.3 Nordvest3.120.0052 0.183   
1.71e+07https://www.airbnb.com/rooms/17135790399       200      Apartment2799Private room1  112FALSETRUENrrebroflexible12.555.71.6e+03 3.2 Brokvarterer3.250.00317-0.0444  
1.72e+07https://www.airbnb.com/rooms/17165115558       200      Apartment1796Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.23e+033.35Brokvarterer3.3 0.0042 0.0506  
1.72e+07https://www.airbnb.com/rooms/17166000332       1175250      Apartment3093Private room2  225FALSEFALSENrrebroflexible12.655.72.5e+03 3.4 Brokvarterer3.450.00531-0.048   
1.72e+07https://www.airbnb.com/rooms/17184069299       1100100      Apartment1296Private room1  111FALSETRUEValbymoderate12.555.71.7e+03 3.23West3.120.005360.105   
1.72e+07https://www.airbnb.com/rooms/17215697326       150200      Apartment7296Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.15e+033.33Brokvarterer3.280.003710.0552  
1.73e+07https://www.airbnb.com/rooms/17313722751       250200      Apartment36096Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.655.73.05e+033.48Brokvarterer3.360.0123 0.128   
1.73e+07https://www.airbnb.com/rooms/17335206392       20125      Apartment4798Private room1  113TRUEFALSEVanlsemoderate12.555.71.57e+033.2 Nordvest3.230.00543-0.0299  
1.73e+07https://www.airbnb.com/rooms/17340635359       1500      Apartment1591Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.49e+033.17Brokvarterer3.260.00331-0.0898  
1.74e+07https://www.airbnb.com/rooms/17352894432       100      House1092Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.61.73e+033.24Amager3.270.00657-0.0358  
1.74e+07https://www.airbnb.com/rooms/17365223498       12000      Apartment1496Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.19e+033.34Brokvarterer3.240.003070.0996  
1.74e+07https://www.airbnb.com/rooms/17373122299       100      Apartment1090Private room1  112FALSEFALSEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer3.230.00311-0.155   
1.74e+07https://www.airbnb.com/rooms/17394882797       100      House3296Private room1  112FALSETRUEIndre Byflexible12.655.73.19e+033.5 Center3.390.006880.109   
1.74e+07https://www.airbnb.com/rooms/17419481399       249200      Apartment21100Private room2  112FALSETRUEAmager stmoderate12.655.71.64e+033.22Amager3.3 0.00575-0.085   
1.75e+07https://www.airbnb.com/rooms/17469632352       100      Apartment1497Private room1  112FALSETRUEBispebjergflexible12.555.71.41e+033.15Nordvest3.130.004570.0225  
1.75e+07https://www.airbnb.com/rooms/17470233731       20300      Apartment3498Private room1  244TRUETRUENrrebroflexible12.655.72.92e+033.47Brokvarterer3.390.004390.072   
1.75e+07https://www.airbnb.com/rooms/17484651372       11000      Apartment2590Private room1  112FALSETRUEsterbroflexible12.655.71.59e+033.2 Brokvarterer3.240.00311-0.0344  
1.75e+07https://www.airbnb.com/rooms/17493273399       255200      Apartment5295Private room1  112FALSETRUEFrederiksbergflexible12.555.71.65e+033.22Brokvarterer3.250.0033 -0.0287  
1.75e+07https://www.airbnb.com/rooms/17509177352       100      Apartment3095Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.41e+033.15Brokvarterer3.240.00308-0.0941  
1.75e+07https://www.airbnb.com/rooms/17510665352       2225175      Apartment6696Private room1  123FALSETRUENrrebromoderate12.655.71.63e+033.21Brokvarterer3.310.00379-0.1     
1.75e+07https://www.airbnb.com/rooms/17513955598       100      Apartment4195Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.39e+033.38Brokvarterer3.270.003980.105   
1.75e+07https://www.airbnb.com/rooms/17524864359       1350      Apartment14100Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.47e+033.17Brokvarterer3.250.00319-0.0789  
1.75e+07https://www.airbnb.com/rooms/17534970199       100      Apartment1694Private room1  111FALSETRUENrrebroflexible12.555.7796       2.9 Brokvarterer3.2 0.00318-0.302   
1.76e+07https://www.airbnb.com/rooms/17587722312       11420      Apartment1995Private room1  112FALSEFALSEAmager stflexible12.655.71.39e+033.14Amager3.210.00374-0.0712  
1.76e+07https://www.airbnb.com/rooms/17600961737       22170      Apartment2298Private room1  111TRUETRUEIndre Bymoderate12.655.73.16e+033.5 Center3.4 0.004940.103   
1.76e+07https://www.airbnb.com/rooms/17607462399       100      Apartment3099Private room1  111FALSETRUENrrebromoderate12.555.71.6e+03 3.2 Brokvarterer3.240.00345-0.0359  
1.76e+07https://www.airbnb.com/rooms/17616662299       1350      Apartment12100Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.23e+033.09Brokvarterer3.210.0033 -0.12    
1.76e+07https://www.airbnb.com/rooms/17621434399       11000      Apartment10100Private room1  112FALSEFALSEIndre Byflexible12.655.71.7e+03 3.23Center3.380.00413-0.148   
1.76e+07https://www.airbnb.com/rooms/17637436372       11000      Apartment26100Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.59e+033.2 Brokvarterer3.250.00321-0.0477  
1.77e+07https://www.airbnb.com/rooms/17650592299       1500      Apartment3197Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.25e+033.1 Brokvarterer3.290.00347-0.196   
1.77e+07https://www.airbnb.com/rooms/17665882797       1199198      Townhouse1596Private room1  123TRUETRUEIndre Bymoderate12.655.74.18e+033.62Center3.480.009010.143   
1.77e+07https://www.airbnb.com/rooms/17676460478       20200      House16299Private room1  123TRUETRUEVanlsemoderate12.555.71.91e+033.28Nordvest3.270.008570.0164  
1.77e+07https://www.airbnb.com/rooms/17687898272       2120350      Apartment11100Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.21e+033.08Brokvarterer3.320.00442-0.239   
1.77e+07https://www.airbnb.com/rooms/17705204498       100      Other4399Private room1  112FALSETRUEValbymoderate12.555.71.99e+033.3 West3.240.008530.056   
1.77e+07https://www.airbnb.com/rooms/17725947498       12500      Apartment12499Private room1  122TRUETRUEAmager stmoderate12.655.72.24e+033.35Amager3.290.005410.057   
1.78e+07https://www.airbnb.com/rooms/17762371498       11000      Apartment6497Private room1  122TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.09e+033.32Brokvarterer3.280.004060.0401  
1.78e+07https://www.airbnb.com/rooms/17803617259       120075      Condominium2899Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.54e+033.19Amager3.280.00566-0.0926  
1.78e+07https://www.airbnb.com/rooms/17805545498       150100      Condominium3297Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.62.44e+033.39Brokvarterer3.280.0051 0.103   
1.78e+07https://www.airbnb.com/rooms/17827410352       235200      Apartment4996Private room1  122TRUETRUEBispebjergflexible12.555.71.44e+033.16Nordvest3.160.00524-0.000904
1.79e+07https://www.airbnb.com/rooms/17853510445       12800      Apartment7697Private room1  122FALSETRUENrrebroflexible12.555.72.06e+033.31Brokvarterer3.250.003770.0607  
1.79e+07https://www.airbnb.com/rooms/17856993399       11000      Apartment2297Private room1  112FALSEFALSEAmager stmoderate12.655.71.7e+03 3.23Amager3.240.00393-0.0148  
1.79e+07https://www.airbnb.com/rooms/178775601.15e+03200      Other2695Private room1  122FALSETRUEAmager stflexible12.655.74.6e+03 3.66Amager3.290.0078 0.374   
1.79e+07https://www.airbnb.com/rooms/17883381538       100      Townhouse11498Private room0  112TRUETRUEIndre Bymoderate12.655.72.15e+033.33Center3.410.0108 -0.0752  
1.79e+07https://www.airbnb.com/rooms/17891532299       100      Apartment21100Private room1  112FALSEFALSEAmager Vestmoderate12.655.71.2e+03 3.08Amager3.250.004  -0.17    
1.79e+07https://www.airbnb.com/rooms/17905527233       100      Apartment1499Private room1.5112TRUETRUEBispebjergstrict_14_with_grace_period12.555.7932       2.97Nordvest3.230.0059 -0.261   
1.79e+07https://www.airbnb.com/rooms/17931706286       1250295      Apartment4492Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.72.57e+033.41Brokvarterer3.290.003520.124   
1.79e+07https://www.airbnb.com/rooms/17938126299       11000      Apartment2498Private room1  112FALSETRUEBispebjergmoderate12.555.71.3e+03 3.11Nordvest3.160.00475-0.0434  
1.79e+07https://www.airbnb.com/rooms/17941225199       100      Apartment2691Private room1  111FALSEFALSEIndre Byflexible12.655.7796       2.9 Center3.330.00413-0.431   
1.79e+07https://www.airbnb.com/rooms/17942075352       100      Apartment4797Private room1  112TRUEFALSEBispebjergstrict_14_with_grace_period12.555.71.41e+033.15Nordvest3.210.00542-0.0582  
1.79e+07https://www.airbnb.com/rooms/17948420598       1500100      Apartment1091Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.73.29e+033.52Amager3.250.004140.264   
1.8e+07 https://www.airbnb.com/rooms/17960155312       1900      Apartment1595Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.555.71.34e+033.13Brokvarterer3.290.00346-0.159   
1.8e+07 https://www.airbnb.com/rooms/17967030498       100      Apartment10100Private room1  122FALSETRUEsterbrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer3.290.0036 0.0078  
1.8e+07 https://www.airbnb.com/rooms/17974503372       11000      Apartment4095Private room1  112TRUEFALSEFrederiksbergmoderate12.655.71.59e+033.2 Brokvarterer3.3 0.00405-0.0999  
1.8e+07 https://www.airbnb.com/rooms/18003260452       21500      Condominium8393Private room1  112FALSETRUEIndre Byflexible12.655.71.96e+033.29Center3.390.00599-0.101   
1.8e+07 https://www.airbnb.com/rooms/18013013352       20300      Apartment3594Private room1  112FALSETRUEFrederiksbergflexible12.655.71.41e+033.15Brokvarterer3.240.00311-0.0936  
1.8e+07 https://www.airbnb.com/rooms/18014316399       150150      Apartment6797Private room1  112FALSETRUEAmager Vestmoderate12.655.62.25e+033.35Amager3.250.004260.0995  
1.8e+07 https://www.airbnb.com/rooms/18037149299       100      Apartment4299Private room1  111TRUETRUEVanlsestrict_14_with_grace_period12.555.71.2e+03 3.08Nordvest3.170.00555-0.0949  
1.81e+07https://www.airbnb.com/rooms/18085359345       11200      Apartment8993Private room1  112FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.5e+03 3.18Nordvest3.180.00547-0.00322 
1.81e+07https://www.airbnb.com/rooms/18086205306       100      Apartment2897Private room1  111FALSEFALSEsterbroflexible12.655.71.22e+033.09Brokvarterer3.210.00323-0.121   
1.81e+07https://www.airbnb.com/rooms/18086469279       112050      Apartment6591Private room1  111FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.44e+033.16Nordvest3.140.005250.0205  
1.81e+07https://www.airbnb.com/rooms/18107820498       11500      Apartment3497Private room1  112FALSETRUEIndre Byflexible12.655.72.14e+033.33Center3.380.00402-0.0466  
1.81e+07https://www.airbnb.com/rooms/18134314399       2200150      Apartment1799Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.8e+03 3.25Brokvarterer3.290.00353-0.0371  
1.81e+07https://www.airbnb.com/rooms/18138750605       150150      Apartment2593Private room1  122FALSEFALSENrrebromoderate12.655.73.07e+033.49Brokvarterer3.270.003250.221   
1.82e+07https://www.airbnb.com/rooms/18157959392       169199      Apartment1093Private room1  112FALSETRUEAmager Vestflexible12.655.72.43e+033.39Amager3.210.003740.176   
1.82e+07https://www.airbnb.com/rooms/18184849299       15297      Apartment3394Private room1  112FALSEFALSENrrebroflexible12.655.71.64e+033.21Brokvarterer3.240.00309-0.0281  
1.82e+07https://www.airbnb.com/rooms/18191280199       10100      Apartment1393Private room1  011FALSETRUEAmager Vestflexible12.655.71.2e+03 3.08Amager3.130.00393-0.0514  
1.82e+07https://www.airbnb.com/rooms/18191683385       240195      Apartment5795Private room1  112FALSEFALSEValbymoderate12.555.71.58e+033.2 West3.170.005420.0316  
1.82e+07https://www.airbnb.com/rooms/18201697345       11000      Apartment5693Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.555.71.48e+033.17Brokvarterer3.290.00363-0.12    
1.82e+07https://www.airbnb.com/rooms/18218584751       15000      Apartment1198Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.73.5e+03 3.54Brokvarterer3.290.003530.256   
1.82e+07https://www.airbnb.com/rooms/18218713399       100      Apartment3194Private room1  112FALSEFALSEValbyflexible12.555.71.6e+03 3.2 West3.130.005090.0687  
1.82e+07https://www.airbnb.com/rooms/18238100498       2350200      Apartment4899Private room1  112TRUETRUEsterbromoderate12.655.72.34e+033.37Brokvarterer3.310.004040.0623  
1.82e+07https://www.airbnb.com/rooms/18242845385       13000      Apartment2299Private room1.5122FALSETRUENrrebromoderate12.555.71.84e+033.26Brokvarterer3.3 0.00387-0.0352  
1.83e+07https://www.airbnb.com/rooms/18287526352       12500      Apartment1996Private room1  112FALSETRUEBispebjergflexible12.555.71.66e+033.22Nordvest3.130.004550.0939  
1.83e+07https://www.airbnb.com/rooms/18287739352       12000      Apartment2697Private room1  112FALSEFALSEVanlsemoderate12.555.71.61e+033.21Nordvest3.160.004730.0512  
1.84e+07https://www.airbnb.com/rooms/18367064345       120075      Apartment1098Private room1  111FALSETRUENrrebroflexible12.655.71.88e+033.27Brokvarterer3.210.003240.0669  
1.84e+07https://www.airbnb.com/rooms/18385711239       11200      Apartment5795Private room1  111FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.08e+033.03Nordvest3.140.00516-0.109   
1.84e+07https://www.airbnb.com/rooms/18390509498       214999      Apartment1496Private room1  033FALSEFALSEAmager Vestmoderate12.655.72.14e+033.33Amager3.230.004850.0986  
1.84e+07https://www.airbnb.com/rooms/18398844352       11700      Apartment15100Private room1  112TRUETRUEAmager stmoderate12.655.71.58e+033.2 Amager3.280.00474-0.0783  
1.84e+07https://www.airbnb.com/rooms/18409775950       11800      Apartment1392Private room1  122FALSEFALSEIndre Byflexible12.655.73.98e+033.6 Center3.370.004  0.233   
1.84e+07https://www.airbnb.com/rooms/18425260252       100      Apartment1994Private room1  111FALSETRUEValbyflexible12.555.71.01e+033   West3.1 0.00516-0.0929  
1.85e+07https://www.airbnb.com/rooms/18474104452       12500      Townhouse6499Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.06e+033.31Brokvarterer3.340.00872-0.0279  
1.85e+07https://www.airbnb.com/rooms/18505185352       11100      Apartment2694Private room1  112FALSETRUEBispebjergmoderate12.555.71.52e+033.18Nordvest3.150.0047 0.0301  
1.85e+07https://www.airbnb.com/rooms/18539305452       100      Apartment3192Private room1  112FALSETRUEAmager Vestflexible12.655.71.81e+033.26Amager3.210.003780.0449  
1.85e+07https://www.airbnb.com/rooms/18542758352       21001e+03      Apartment3795Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.51e+033.18Amager3.260.00412-0.0845  
1.86e+07https://www.airbnb.com/rooms/18590671239       10120      Apartment4698Private room1  001TRUETRUEsterbroflexible12.655.71.44e+033.16Brokvarterer3.2 0.00417-0.0402  
1.86e+07https://www.airbnb.com/rooms/18621872239       150100      Apartment1895Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.41e+033.15Brokvarterer3.270.00326-0.12    
1.87e+07https://www.airbnb.com/rooms/18686581425       1125100      Apartment4497Private room1  112TRUETRUENrrebroflexible12.555.72.22e+033.35Brokvarterer3.280.003980.0702  
1.87e+07https://www.airbnb.com/rooms/186877681e+03       10659      Apartment2493Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.76.65e+033.82Brokvarterer3.280.003440.538   
1.87e+07https://www.airbnb.com/rooms/18711110399       100      Apartment9190Private room0.5112FALSEFALSENrrebroflexible12.655.71.6e+03 3.2 Brokvarterer3.220.00466-0.0169  
1.87e+07https://www.airbnb.com/rooms/18719656352       10150      Apartment3693Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.01e+033.3 Brokvarterer3.290.003460.016   
1.87e+07https://www.airbnb.com/rooms/18723206498       100      Apartment1898Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.99e+033.3 Center3.390.00441-0.0865  
1.88e+07https://www.airbnb.com/rooms/18750251352       100      Apartment18100Private room1  112FALSEFALSENrrebroflexible12.555.71.41e+033.15Brokvarterer3.250.00319-0.0986  
1.88e+07https://www.airbnb.com/rooms/18785449432       100      Other6391Private room1.5122FALSETRUEAmager stflexible12.655.61.73e+033.24Amager3.320.00806-0.0789  
1.88e+07https://www.airbnb.com/rooms/18785953478       100      Apartment1998Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.91e+033.28Brokvarterer3.240.003110.0368  
1.88e+07https://www.airbnb.com/rooms/18798700385       1150100      House3496Private room1  112FALSEFALSEBispebjergflexible12.555.72.09e+033.32Nordvest3.150.006850.173   
1.88e+07https://www.airbnb.com/rooms/18813923312       1185160      Apartment1092Private room1  113FALSETRUEsterbrostrict_14_with_grace_period12.655.72.07e+033.32Brokvarterer3.320.00368-0.000323
1.89e+07https://www.airbnb.com/rooms/18871990797       110050      Apartment2991Private room1  102FALSETRUEAmager ststrict_14_with_grace_period12.655.73.49e+033.54Amager3.260.004110.286   
1.89e+07https://www.airbnb.com/rooms/18873599697       100      Apartment3699Private room1  034TRUETRUEAmager stmoderate12.655.72.79e+033.45Amager3.310.005960.14    
1.89e+07https://www.airbnb.com/rooms/18882536498       100      Apartment1198Private room1  112FALSEFALSEIndre Bymoderate12.655.71.99e+033.3 Center3.4 0.00422-0.102   
1.89e+07https://www.airbnb.com/rooms/18894646352       100      Apartment21099Private room1  111TRUETRUEAmager stflexible12.655.71.41e+033.15Amager3.250.00788-0.0969  
1.89e+07https://www.airbnb.com/rooms/18902129399       100      Apartment22895Private room1  111FALSETRUEFrederiksbergflexible12.555.71.6e+03 3.2 Brokvarterer3.240.00849-0.0375  
1.89e+07https://www.airbnb.com/rooms/18908041359       1100100      Apartment9997Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.71.94e+033.29Brokvarterer3.310.00445-0.0265  
1.89e+07https://www.airbnb.com/rooms/189107641.2e+03 4149224      Apartment4894Private room1  146FALSEFALSEIndre Byflexible12.655.74.93e+033.69Center3.520.005940.174   
1.89e+07https://www.airbnb.com/rooms/18910786498       2200200      Apartment10100Private room1  122FALSETRUEAmager Vestmoderate12.655.72.19e+033.34Amager3.250.004030.0947  
1.89e+07https://www.airbnb.com/rooms/18922548744       1475120      Apartment6398Private room1  112TRUETRUEIndre Byflexible12.655.73.93e+033.59Center3.410.004660.181   
1.89e+07https://www.airbnb.com/rooms/18929054173       10150      Apartment4199Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.29e+033.11Brokvarterer3.260.00371-0.148   
1.9e+07 https://www.airbnb.com/rooms/18950960352       1750      Condominium1193Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.48e+033.17West3.150.006760.0193  
1.9e+07 https://www.airbnb.com/rooms/18958914339       1045      Apartment2191Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.54e+033.19Brokvarterer3.240.00307-0.0495  
1.9e+07 https://www.airbnb.com/rooms/18967179751       10200      Apartment12100Private room1  112FALSETRUEFrederiksbergmoderate12.555.73.8e+03 3.58Brokvarterer3.270.003380.307   
1.9e+07 https://www.airbnb.com/rooms/18971037751       1200250      Apartment1699Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.74.2e+03 3.62Brokvarterer3.290.003530.332   
1.9e+07 https://www.airbnb.com/rooms/18973115352       10100      Apartment1699Private room1.5112FALSETRUEsterbromoderate12.655.71.81e+033.26Brokvarterer3.3 0.00388-0.0418  
1.9e+07 https://www.airbnb.com/rooms/18995258498       2275650      Apartment9097Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.27e+033.36Brokvarterer3.330.004430.0248  
1.9e+07 https://www.airbnb.com/rooms/19024464286       1300199      Apartment1297Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.24e+033.35Brokvarterer3.230.003420.117   
1.9e+07 https://www.airbnb.com/rooms/19025050399       2100150      Apartment3892Private room1  122FALSETRUEValbymoderate12.555.71.7e+03 3.23West3.160.005290.0696  
1.9e+07 https://www.airbnb.com/rooms/19030871352       11500      Apartment1495Private room1  112FALSETRUEFrederiksbergflexible12.555.71.56e+033.19Brokvarterer3.240.00305-0.0474  
1.91e+07https://www.airbnb.com/rooms/19084886352       100      Apartment1295Private room1  122FALSETRUEValbyflexible12.555.71.41e+033.15West3.130.005060.0162  
1.91e+07https://www.airbnb.com/rooms/19089527199       1150135      Apartment3494Private room1  112FALSETRUENrrebromoderate12.655.71.49e+033.17Brokvarterer3.270.00327-0.0969  
1.91e+07https://www.airbnb.com/rooms/19112379452       21500      Townhouse7099Private room1  122TRUETRUEFrederiksbergmoderate12.555.71.96e+033.29Brokvarterer3.320.00865-0.0318  
1.91e+07https://www.airbnb.com/rooms/19117655399       280100      Apartment3099Private room1  123FALSETRUEAmager stmoderate12.655.71.68e+033.22Amager3.280.00415-0.0598  
1.91e+07https://www.airbnb.com/rooms/19135934399       13500      Apartment2498Private room1  112FALSEFALSEFrederiksbergmoderate12.655.71.95e+033.29Brokvarterer3.270.003290.0166  
1.92e+07https://www.airbnb.com/rooms/19150296551       1245100      Apartment1498Private room1  022FALSEFALSENrrebromoderate12.555.72.85e+033.45Brokvarterer3.230.003880.229   
1.92e+07https://www.airbnb.com/rooms/19166934299       2150150      Apartment2694Private room1.5112FALSETRUEsterbroflexible12.655.71.35e+033.13Brokvarterer3.270.00368-0.138   
1.92e+07https://www.airbnb.com/rooms/19177904299       189373      Apartment10599Private room1  111TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.78e+033.44Amager3.270.005320.17    
1.92e+07https://www.airbnb.com/rooms/19241525299       190100      Apartment1696Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.71.69e+033.23Brokvarterer3.250.0036 -0.0245  
1.93e+07https://www.airbnb.com/rooms/19262602399       10200      Apartment3493Private room1  111FALSEFALSEsterbromoderate12.655.72.4e+03 3.38Brokvarterer3.230.003410.148   
1.93e+07https://www.airbnb.com/rooms/19268790392       2250100      Apartment102100Private room1  112FALSETRUEsterbromoderate12.655.71.82e+033.26Brokvarterer3.290.00445-0.0288  
1.93e+07https://www.airbnb.com/rooms/19302727332       15065      Apartment19100Private room1  112FALSETRUEFrederiksbergmoderate12.655.71.64e+033.21Brokvarterer3.270.00336-0.0599  
1.93e+07https://www.airbnb.com/rooms/19329996598       10100      Apartment11100Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.72.79e+033.45Brokvarterer3.250.0032 0.2     
1.93e+07https://www.airbnb.com/rooms/19345736498       100      House1096Private room1  122TRUETRUEAmager Vestmoderate12.655.61.99e+033.3 Amager3.290.006980.0101  
1.94e+07https://www.airbnb.com/rooms/193703195e+03       145100      Apartment17991Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.05e+044.31Brokvarterer3.290.006631.02    
1.94e+07https://www.airbnb.com/rooms/19373432498       12500      Other12297Private room1  112FALSEFALSEFrederiksbergflexible12.655.72.24e+033.35Brokvarterer3.330.008410.0162  
1.94e+07https://www.airbnb.com/rooms/19373666326       1100190      Apartment12194Private room1  112TRUEFALSEsterbrostrict_14_with_grace_period12.655.72.16e+033.34Brokvarterer3.330.004960.0033  
1.94e+07https://www.airbnb.com/rooms/19376595199       1150125      Condominium1195Private room1  113FALSETRUEVanlsestrict_14_with_grace_period12.555.71.45e+033.16Nordvest3.220.00633-0.0568  
1.94e+07https://www.airbnb.com/rooms/19379916372       100      Apartment2396Private room1  111FALSETRUEFrederiksbergflexible12.655.71.49e+033.17Brokvarterer3.210.0032 -0.0343  
1.94e+07https://www.airbnb.com/rooms/19383408498       100      Apartment1293Private room1  112FALSETRUEIndre Bymoderate12.655.71.99e+033.3 Center3.4 0.00418-0.0961  
1.94e+07https://www.airbnb.com/rooms/19393240299       100      Apartment1195Private room1  122FALSETRUEVanlseflexible12.555.71.2e+03 3.08Nordvest3.120.00454-0.0452  
1.94e+07https://www.airbnb.com/rooms/19419406452       100      House10898Private room1  112TRUETRUEAmager stmoderate12.655.61.81e+033.26Amager3.310.00719-0.0513  
1.94e+07https://www.airbnb.com/rooms/19429866498       1500      Apartment2991Private room1  122FALSETRUEsterbroflexible12.655.72.04e+033.31Brokvarterer3.240.0031 0.0728  
1.94e+07https://www.airbnb.com/rooms/19445943452       100      Apartment2490Private room1  112FALSETRUEAmager stmoderate12.655.71.81e+033.26Amager3.240.003960.0218  
1.94e+07https://www.airbnb.com/rooms/19449934425       17570      Apartment1599Private room1  112FALSEFALSEValbyflexible12.555.72.06e+033.31West3.140.005130.175   
1.95e+07https://www.airbnb.com/rooms/19465963332       215050      Apartment2191Private room1  123FALSETRUEAmager stmoderate12.655.71.48e+033.17Amager3.270.00409-0.102   
1.95e+07https://www.airbnb.com/rooms/19470146498       20109      Apartment4692Private room1  122FALSEFALSEAmager ststrict_14_with_grace_period12.655.71.99e+033.3 Amager3.260.004170.0388  
1.95e+07https://www.airbnb.com/rooms/19503407498       100      Apartment1394Private room1  011TRUETRUEIndre Byflexible12.655.71.99e+033.3 Center3.320.005  -0.0187  
1.95e+07https://www.airbnb.com/rooms/19549045498       100      Apartment3199Private room1  112FALSEFALSEIndre Byflexible12.655.71.99e+033.3 Center3.380.00407-0.0803  
1.96e+07https://www.airbnb.com/rooms/19561679511       11490      Apartment5795Private room1  112FALSETRUEFrederiksbergflexible12.555.72.19e+033.34Brokvarterer3.250.003380.0938  
1.96e+07https://www.airbnb.com/rooms/19570597498       2120300      Other4098Private room1  114TRUEFALSEAmager stflexible12.655.62.11e+033.32Amager3.4 0.00831-0.0717  
1.96e+07https://www.airbnb.com/rooms/19580563266       100      Apartment1998Private room1  111FALSETRUEAmager Vestmoderate12.655.71.06e+033.03Amager3.210.00407-0.182   
1.96e+07https://www.airbnb.com/rooms/19582349399       1100100      Apartment1398Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.1e+03 3.32Brokvarterer3.270.003320.0508  
1.96e+07https://www.airbnb.com/rooms/19582694452       1500250      Condominium10100Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.73.31e+033.52Brokvarterer3.3 0.005340.216   
1.96e+07https://www.airbnb.com/rooms/19588342299       100      Condominium1599Private room1  112FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.71.2e+03 3.08West3.2 0.0067 -0.119   
1.96e+07https://www.airbnb.com/rooms/19588780193       100      Condominium11100Private room2  111FALSETRUEsterbroflexible12.655.7772       2.89Brokvarterer3.280.00672-0.388   
1.96e+07https://www.airbnb.com/rooms/19615708498       100      Apartment6399Private room1  112TRUETRUEAmager Vestflexible12.655.71.99e+033.3 Amager3.260.004620.043   
1.96e+07https://www.airbnb.com/rooms/19632039498       10200      Apartment13199Private room1  122TRUEFALSEVesterbro-Kongens Enghaveflexible12.655.72.79e+033.45Brokvarterer3.290.0052 0.151   
1.97e+07https://www.airbnb.com/rooms/19651670359       15050      Apartment2495Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.71.69e+033.23Brokvarterer3.290.00344-0.0605  
1.97e+07https://www.airbnb.com/rooms/19655784352       100      Apartment2896Private room1  122FALSEFALSEValbymoderate12.555.71.41e+033.15West3.160.00526-0.0148  
1.97e+07https://www.airbnb.com/rooms/19677821359       1500      Apartment3697Private room1  112FALSEFALSEValbymoderate12.555.71.49e+033.17West3.170.005290.00594 
1.97e+07https://www.airbnb.com/rooms/19687138452       11500      Apartment2897Private room1  112FALSETRUENrrebroflexible12.655.71.96e+033.29Brokvarterer3.240.003110.0469  
1.97e+07https://www.airbnb.com/rooms/19693932292       10150      Apartment1196Private room1  112FALSETRUEsterbroflexible12.655.71.77e+033.25Brokvarterer3.240.003070.00674 
1.97e+07https://www.airbnb.com/rooms/19696495498       100      Other5793Private room1  112FALSEFALSEAmager stflexible12.655.71.99e+033.3 Amager3.290.007880.00785 
1.97e+07https://www.airbnb.com/rooms/19722778452       2100150      Apartment8192Private room1  114FALSETRUEsterbromoderate12.655.71.91e+033.28Brokvarterer3.350.00447-0.0656  
1.97e+07https://www.airbnb.com/rooms/19731801598       1800      Townhouse4897Private room1  112TRUETRUEIndre Bymoderate12.655.72.47e+033.39Center3.450.00883-0.0556  
1.97e+07https://www.airbnb.com/rooms/19746609299       100      Apartment1393Private room2  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.2e+03 3.08Brokvarterer3.340.00541-0.258   
1.98e+07https://www.airbnb.com/rooms/19753550598       11000      Apartment1092Private room1  111FALSEFALSEAmager Vestflexible12.655.72.49e+033.4 Amager3.170.003880.224   
1.98e+07https://www.airbnb.com/rooms/19763681438       12000      House17100Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.95e+033.29Brokvarterer3.320.00688-0.0314  
1.98e+07https://www.airbnb.com/rooms/19801709950       30200      Apartment2799Private room1  244TRUETRUEsterbroflexible12.655.73.8e+03 3.58Brokvarterer3.390.004430.186   
1.98e+07https://www.airbnb.com/rooms/19814402498       100      Apartment1098Private room1  112FALSETRUEIndre Byflexible12.655.71.99e+033.3 Center3.370.00407-0.0754  
1.98e+07https://www.airbnb.com/rooms/19836054452       100      Apartment15100Private room1  111TRUEFALSEIndre Bystrict_14_with_grace_period12.655.71.81e+033.26Center3.420.0051 -0.16    
1.98e+07https://www.airbnb.com/rooms/19839869744       100      Apartment2794Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.98e+033.47Brokvarterer3.240.003060.233   
1.99e+07https://www.airbnb.com/rooms/19851282498       10125      Apartment1599Private room1  224FALSETRUEAmager Vestmoderate12.655.72.49e+033.4 Amager3.360.004360.0336  
1.99e+07https://www.airbnb.com/rooms/19873579246       120060      Apartment11100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.42e+033.15Brokvarterer3.270.00339-0.119   
1.99e+07https://www.airbnb.com/rooms/19886326399       100      Condominium128100Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.6e+03 3.2 Brokvarterer3.310.0064 -0.105   
1.99e+07https://www.airbnb.com/rooms/19902602452       1100120      Apartment6799Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.555.72.39e+033.38Brokvarterer3.330.004230.0487  
1.99e+07https://www.airbnb.com/rooms/19902819578       1120120      Apartment2695Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.72.91e+033.46Amager3.260.004090.203   
1.99e+07https://www.airbnb.com/rooms/19928221299       10200      Apartment2892Private room1  112FALSETRUEVanlsestrict_14_with_grace_period12.555.72e+03       3.3 Nordvest3.170.004850.133   
1.99e+07https://www.airbnb.com/rooms/19935828219       100      Apartment2292Private room1  012FALSEFALSENrrebromoderate12.655.7876       2.94Brokvarterer3.220.00382-0.276   
2e+07       https://www.airbnb.com/rooms/19956178465       1100100      Apartment1996Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.36e+033.37Brokvarterer3.320.004310.0557  
2e+07       https://www.airbnb.com/rooms/19978674419       100      Apartment2094Private room1  112FALSETRUEsterbromoderate12.655.71.68e+033.22Brokvarterer3.270.00325-0.0423  
2e+07       https://www.airbnb.com/rooms/19981986458       2150200      Apartment9497Private room1  112TRUETRUEValbymoderate12.555.71.98e+033.3 West3.210.006070.0917  
2e+07       https://www.airbnb.com/rooms/20002449598       1100300      Apartment3398Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.555.73.69e+033.57Brokvarterer3.3 0.004070.264   
2e+07       https://www.airbnb.com/rooms/20028752498       11500      Apartment6595Private room1  112TRUETRUEIndre Byflexible12.655.72.14e+033.33Center3.410.00466-0.0787  
2e+07       https://www.airbnb.com/rooms/20029280531       2350100      Apartment1290Private room1  113FALSETRUEIndre Bymoderate12.655.72.47e+033.39Center3.430.00436-0.0339  
2e+07       https://www.airbnb.com/rooms/20041838458       11000      Apartment27100Private room1  112FALSEFALSEsterbromoderate12.655.71.93e+033.29Brokvarterer3.280.003360.0104  
2e+07       https://www.airbnb.com/rooms/20041858332       1750      Apartment1397Private room1.5112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.4e+03 3.15Brokvarterer3.310.00401-0.168   
2e+07       https://www.airbnb.com/rooms/20043812299       100      Apartment1291Private room1  111FALSETRUEAmager stmoderate12.655.71.2e+03 3.08Amager3.2 0.00409-0.121   
2.01e+07https://www.airbnb.com/rooms/20060114697       15000      Apartment6997Private room1  244TRUEFALSEsterbromoderate12.655.73.29e+033.52Brokvarterer3.430.004460.0914  
2.01e+07https://www.airbnb.com/rooms/20060237485       100      Other10392Private room1  112FALSETRUEIndre Byflexible12.655.71.94e+033.29Center3.460.00836-0.168   
2.01e+07https://www.airbnb.com/rooms/20121448392       14990      Condominium2497Private room1  112TRUETRUENrrebromoderate12.555.72.07e+033.32Brokvarterer3.310.005660.00236 
2.01e+07https://www.airbnb.com/rooms/20135357432       11300      Apartment23496Private room1  112TRUETRUEIndre Byflexible12.655.71.86e+033.27Center3.440.0083 -0.171   
2.01e+07https://www.airbnb.com/rooms/20141519458       1060      Apartment6294Private room1  102FALSEFALSEsterbroflexible12.655.72.07e+033.32Brokvarterer3.250.003450.0696  
2.02e+07https://www.airbnb.com/rooms/20188270452       100      Apartment3197Private room1  112TRUEFALSEAmager stflexible12.655.71.81e+033.26Amager3.250.004540.00895 
2.02e+07https://www.airbnb.com/rooms/20189430598       11500      Apartment3297Private room1  112FALSETRUEFrederiksbergflexible12.655.72.54e+033.41Brokvarterer3.250.003130.16    
2.02e+07https://www.airbnb.com/rooms/20212715352       1100100      Condominium1395Private room1  112FALSETRUEFrederiksbergflexible12.555.71.91e+033.28Brokvarterer3.250.005050.0284  
2.02e+07https://www.airbnb.com/rooms/20223600392       1100125      House2699Private room1  111TRUETRUEAmager Vestmoderate12.655.62.17e+033.34Amager3.260.007  0.0761  
2.02e+07https://www.airbnb.com/rooms/20228552299       100      Apartment1295Private room1  112FALSETRUEBispebjergflexible12.555.71.2e+03 3.08Nordvest3.120.00453-0.0454  
2.03e+07https://www.airbnb.com/rooms/20279730299       15050      Apartment11100Private room1  112FALSETRUEFrederiksbergflexible12.555.71.45e+033.16Brokvarterer3.250.0032 -0.0858  
2.03e+07https://www.airbnb.com/rooms/20294841498       31000      House6996Private room1  123TRUETRUEBispebjergflexible12.655.72.09e+033.32Nordvest3.220.007420.102   
2.03e+07https://www.airbnb.com/rooms/20324052452       11250      Apartment5397Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.93e+033.29Brokvarterer3.250.003350.037   
2.03e+07https://www.airbnb.com/rooms/20327436206       100      Apartment1699Private room1  112FALSETRUEBispebjergflexible12.555.7824       2.92Nordvest3.130.00462-0.213   
2.03e+07https://www.airbnb.com/rooms/20346753452       11000      Apartment1394Private room1  122FALSETRUEIndre Byflexible12.655.71.91e+033.28Center3.370.004  -0.0893  
2.04e+07https://www.airbnb.com/rooms/20356756352       11000      Apartment8593Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.51e+033.18Brokvarterer3.280.00396-0.0979  
2.04e+07https://www.airbnb.com/rooms/20376992405       2350100      Apartment13893Private room1  113TRUETRUEIndre Byflexible12.655.71.97e+033.29Center3.460.00576-0.161   
2.04e+07https://www.airbnb.com/rooms/20382007452       20200      Apartment2999Private room1  124TRUETRUENrrebroflexible12.655.71.81e+033.26Brokvarterer3.350.00464-0.0918  
2.04e+07https://www.airbnb.com/rooms/20385251372       2150100      Apartment5198Private room1  122TRUETRUEFrederiksbergflexible12.555.71.64e+033.21Brokvarterer3.280.004  -0.0653  
2.04e+07https://www.airbnb.com/rooms/20436408498       1500      Apartment1198Private room1  112FALSEFALSEAmager Vestmoderate12.655.72.04e+033.31Amager3.240.003970.0664  
2.04e+07https://www.airbnb.com/rooms/20436469399       1250100      House6292Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.25e+033.35Brokvarterer3.310.006710.0426  
2.04e+07https://www.airbnb.com/rooms/20443736551       100      Apartment1899Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.2e+03 3.34Brokvarterer3.320.004330.0223  
2.05e+07https://www.airbnb.com/rooms/20476614352       1100120      Apartment1298Private room1  112FALSETRUEsterbromoderate12.655.71.99e+033.3 Brokvarterer3.270.003320.028   
2.05e+07https://www.airbnb.com/rooms/20510605199       1150149      Apartment1592Private room1  012FALSETRUEAmager stflexible12.655.71.54e+033.19Amager3.160.004180.024   
2.06e+07https://www.airbnb.com/rooms/20551052976       100      House2299Private room1  345TRUETRUEBrnshj-Husumflexible12.555.73.9e+03 3.59West3.390.007310.205   
2.06e+07https://www.airbnb.com/rooms/20588487751       1750      Apartment2899Private room1  112FALSETRUEAmager Vestmoderate12.655.73.08e+033.49Amager3.250.003980.241   
2.06e+07https://www.airbnb.com/rooms/20629276299       100      Apartment1295Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.2e+03 3.08Brokvarterer3.270.00328-0.189   
2.07e+07https://www.airbnb.com/rooms/20661849399       1250200      Apartment4594Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.65e+033.42Brokvarterer3.270.003330.152   
2.07e+07https://www.airbnb.com/rooms/20664377352       1250200      Apartment1695Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.46e+033.39Brokvarterer3.260.004340.13    
2.07e+07https://www.airbnb.com/rooms/20692228452       1150200      Apartment1098Private room1  111FALSEFALSEIndre Bymoderate12.655.72.76e+033.44Center3.370.004350.0749  
2.07e+07https://www.airbnb.com/rooms/20707331452       2300200      Apartment9297Private room1.5112TRUETRUENrrebromoderate12.555.72.11e+033.32Brokvarterer3.340.0048 -0.0149  
2.08e+07https://www.airbnb.com/rooms/20793730399       100      Apartment9099Private room1  112TRUETRUEIndre Byflexible12.655.71.6e+03 3.2 Center3.420.00489-0.216   
2.09e+07https://www.airbnb.com/rooms/20871744299       11000      Apartment7697Private room1  111TRUETRUEFrederiksbergflexible12.555.71.3e+03 3.11Brokvarterer3.250.0043 -0.134   
2.09e+07https://www.airbnb.com/rooms/20879007764       16666      Apartment1992Private room1  122TRUETRUEAmager stmoderate12.655.73.39e+033.53Amager3.270.004750.263   
2.09e+07https://www.airbnb.com/rooms/20879555352       11e+0350      Apartment1198Private room1  112FALSETRUENrrebroflexible12.655.72.61e+033.42Brokvarterer3.240.003120.173   
2.09e+07https://www.airbnb.com/rooms/20893496598       13500      Apartment3099Private room1  122TRUETRUEsterbromoderate12.655.72.74e+033.44Brokvarterer3.3 0.0041 0.134   
2.09e+07https://www.airbnb.com/rooms/20907750492       10200      House4093Private room1  112FALSETRUEIndre Byflexible12.655.72.77e+033.44Center3.390.006890.05    
2.09e+07https://www.airbnb.com/rooms/20923083233       125090      Townhouse9495Private room1  112FALSEFALSEAmager Vestmoderate12.655.61.54e+033.19Amager3.270.00872-0.0783  
2.1e+07 https://www.airbnb.com/rooms/20966472232       150120      Apartment1797Private room1  111FALSETRUEAmager Vestflexible12.655.71.46e+033.16Amager3.180.00389-0.0168  
2.1e+07 https://www.airbnb.com/rooms/20978118325       100      Apartment7398Private room1  111FALSETRUEFrederiksbergflexible12.555.71.3e+03 3.11Brokvarterer3.220.00385-0.104   
2.1e+07 https://www.airbnb.com/rooms/20992289452       17550      Apartment3294Private room1  112FALSETRUEsterbromoderate12.655.72.08e+033.32Brokvarterer3.270.003260.0501  
2.1e+07 https://www.airbnb.com/rooms/21001032279       1750      Apartment11100Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.19e+033.08Brokvarterer3.290.00359-0.216   
2.1e+07 https://www.airbnb.com/rooms/21044101299       100      Apartment1698Private room1  112FALSEFALSEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer3.240.00311-0.166   
2.11e+07https://www.airbnb.com/rooms/21065491399       1900      Apartment2798Private room1  112TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.69e+033.23Brokvarterer3.320.00425-0.0943  
2.11e+07https://www.airbnb.com/rooms/21073816352       100      Apartment2898Private room1  111TRUETRUEAmager Vestflexible12.655.71.41e+033.15Amager3.210.00467-0.0645  
2.11e+07https://www.airbnb.com/rooms/21091973399       10150      Apartment2597Private room1  011TRUEFALSENrrebroflexible12.655.72.2e+03 3.34Brokvarterer3.190.004220.149   
2.11e+07https://www.airbnb.com/rooms/21138761678       2250350      Apartment6998Private room1  102TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.96e+033.47Brokvarterer3.330.004230.143   
2.11e+07https://www.airbnb.com/rooms/21141412392       15050      Apartment2397Private room1  111TRUETRUEAmager Vestflexible12.655.71.82e+033.26Amager3.210.004680.0486  
2.12e+07https://www.airbnb.com/rooms/21163339292       1500      Apartment1096Private room1  112TRUEFALSENrrebromoderate12.555.71.22e+033.09Brokvarterer3.3 0.00428-0.211   
2.12e+07https://www.airbnb.com/rooms/21208680452       179150      Apartment1897Private room1  112FALSEFALSENrrebromoderate12.655.72.49e+033.4 Brokvarterer3.270.003280.126   
2.13e+07https://www.airbnb.com/rooms/21262425452       200      Apartment2897Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.555.71.81e+033.26Brokvarterer3.320.00423-0.0628  
2.13e+07https://www.airbnb.com/rooms/21274710266       12000      House15793Private room1  122FALSETRUEAmager ststrict_14_with_grace_period12.655.71.26e+033.1 Amager3.3 0.0082 -0.198   
2.13e+07https://www.airbnb.com/rooms/21277004385       2300400      Apartment2598Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.655.61.84e+033.26Brokvarterer3.3 0.00413-0.0373  
2.13e+07https://www.airbnb.com/rooms/21289602352       1300200      Apartment7594Private room1  101FALSETRUEIndre Byflexible12.655.72.51e+033.4 Center3.340.004530.0548  
2.13e+07https://www.airbnb.com/rooms/21289914492       100      Apartment1897Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.97e+033.29Brokvarterer3.240.003080.0508  
2.13e+07https://www.airbnb.com/rooms/21293596651       1520100      Apartment5095Private room1  112TRUEFALSEIndre Byflexible12.655.73.52e+033.55Center3.410.004620.14    
2.13e+07https://www.airbnb.com/rooms/21315290352       1250200      Apartment1698Private room1  112TRUETRUEIndre Bymoderate12.655.72.46e+033.39Center3.430.00488-0.0414  
2.13e+07https://www.airbnb.com/rooms/21348528352       1250200      Apartment2097Private room1  111TRUETRUEIndre Bymoderate12.655.72.46e+033.39Center3.4 0.00496-0.00487 
2.14e+07https://www.airbnb.com/rooms/21360892399       125075      Condominium6198Private room1  112TRUETRUEAmager ststrict_14_with_grace_period12.655.72.15e+033.33Amager3.310.006030.0189  
2.14e+07https://www.airbnb.com/rooms/21443084419       10125      Apartment10598Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.18e+033.34Brokvarterer3.3 0.0048 0.0391  
2.14e+07https://www.airbnb.com/rooms/21447727352       1250200      Apartment2997Private room1  111TRUETRUEIndre Bymoderate12.655.72.46e+033.39Center3.4 0.00488-0.00641 
2.15e+07https://www.airbnb.com/rooms/21456409452       100      Apartment1898Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.81e+033.26Brokvarterer3.290.0035 -0.033   
2.15e+07https://www.airbnb.com/rooms/21469417146       10200      Apartment3695Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.38e+033.14Brokvarterer3.240.00312-0.103   
2.15e+07https://www.airbnb.com/rooms/21523040419       10100      Apartment1599Private room1  122TRUETRUEsterbromoderate12.655.72.08e+033.32Brokvarterer3.3 0.004230.0155  
2.15e+07https://www.airbnb.com/rooms/21548606452       11000      Apartment6696Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.61.91e+033.28Brokvarterer3.240.0042 0.037   
2.16e+07https://www.airbnb.com/rooms/21579637252       1330      Apartment5699Private room1  111TRUETRUEFrederiksbergflexible12.655.71.04e+033.02Brokvarterer3.250.00415-0.228   
2.16e+07https://www.airbnb.com/rooms/21617105332       100      Apartment2498Private room1  112FALSETRUEsterbroflexible12.655.71.33e+033.12Brokvarterer3.250.00312-0.122   
2.17e+07https://www.airbnb.com/rooms/21659212598       1350145      Apartment7498Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.32e+033.52Center3.460.004750.0608  
2.17e+07https://www.airbnb.com/rooms/21672404399       1050      Apartment2597Private room1  112FALSEFALSEsterbroflexible12.655.71.8e+03 3.25Brokvarterer3.240.0031 0.00987 
2.18e+07https://www.airbnb.com/rooms/21765429399       100      Apartment3393Private room1  122FALSETRUENrrebrostrict_14_with_grace_period12.655.71.6e+03 3.2 Brokvarterer3.290.00345-0.0832  
2.18e+07https://www.airbnb.com/rooms/21777987352       1650      Apartment10100Private room1.5112FALSETRUENrrebromoderate12.555.71.47e+033.17Brokvarterer3.3 0.00393-0.131   
2.18e+07https://www.airbnb.com/rooms/21804827452       100      Apartment1093Private room1  112FALSEFALSEsterbroflexible12.655.71.81e+033.26Brokvarterer3.240.003060.0206  
2.18e+07https://www.airbnb.com/rooms/21849053452       17575      Apartment2399Private room1  111TRUETRUEIndre Byflexible12.655.72.18e+033.34Center3.370.00486-0.0326  
2.2e+07 https://www.airbnb.com/rooms/21961324751       100      Apartment8396Private room1  122FALSETRUEIndre Byflexible12.655.73e+03       3.48Center3.380.004540.0932  
2.2e+07 https://www.airbnb.com/rooms/21963885897       2350200      Apartment2294Private room1  114FALSETRUEVesterbro-Kongens Enghavemoderate12.655.73.94e+033.6 Brokvarterer3.340.003980.257   
2.2e+07 https://www.airbnb.com/rooms/21970408299       1700      Apartment5991Private room1  102FALSEFALSEValbyflexible12.555.71.27e+033.1 West3.140.00533-0.0328  
2.2e+07 https://www.airbnb.com/rooms/21975246173       100      Apartment1496Private room1  112FALSETRUEVanlseflexible12.555.7692       2.84Nordvest3.120.00455-0.285   
2.2e+07 https://www.airbnb.com/rooms/21992570332       1750      Apartment1599Private room1  112FALSEFALSEAmager Vestflexible12.655.61.4e+03 3.15Amager3.220.00382-0.0717  
2.2e+07 https://www.airbnb.com/rooms/22046795299       1150175      Apartment2999Private room1  122TRUETRUEVanlseflexible12.555.72.05e+033.31Nordvest3.160.005270.15    
2.21e+07https://www.airbnb.com/rooms/22084407399       2200100      Apartment2496Private room1  123FALSETRUEAmager stflexible12.655.71.8e+03 3.25Amager3.250.003940.00205 
2.21e+07https://www.airbnb.com/rooms/22101595266       18090      Townhouse2798Private room2  121FALSETRUEAmager Vestmoderate12.655.61.5e+03 3.18Amager3.280.0087 -0.0989  
2.22e+07https://www.airbnb.com/rooms/22246331252       1300      Apartment3792Private room1  112FALSETRUEAmager Vestmoderate12.655.71.04e+033.02Amager3.240.00395-0.224   
2.23e+07https://www.airbnb.com/rooms/22261416850       2310300      Apartment2192Private room1.5122FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.73.71e+033.57Brokvarterer3.310.003990.26    
2.23e+07https://www.airbnb.com/rooms/22264225299       100      Apartment13100Private room1  111FALSEFALSENrrebrostrict_14_with_grace_period12.555.71.2e+03 3.08Brokvarterer3.260.00371-0.178   
2.23e+07https://www.airbnb.com/rooms/22287222332       18050      Apartment1898Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.61e+033.21Brokvarterer3.3 0.00457-0.0943  
2.23e+07https://www.airbnb.com/rooms/22305846299       2150150      Apartment2095Private room1.5144FALSETRUENrrebromoderate12.555.71.35e+033.13Brokvarterer3.370.00434-0.237   
2.23e+07https://www.airbnb.com/rooms/22336351452       100      House9498Private room1  122TRUETRUEAmager stmoderate12.655.61.81e+033.26Amager3.310.00705-0.0489  
2.24e+07https://www.airbnb.com/rooms/22350241498       2400300      Townhouse11096Private room1  122FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.39e+033.38Center3.450.00915-0.0685  
2.24e+07https://www.airbnb.com/rooms/22356321352       135100      House11190Private room1  122FALSETRUEAmager Vestmoderate12.655.61.84e+033.27Amager3.270.0072 -0.00362 
2.24e+07https://www.airbnb.com/rooms/22406518438       100      Apartment5491Private room1  112FALSETRUENrrebroflexible12.655.71.75e+033.24Brokvarterer3.240.003340.00201 
2.24e+07https://www.airbnb.com/rooms/22440451279       100      Apartment2596Private room1  012FALSEFALSEAmager stmoderate12.655.71.12e+033.05Amager3.2 0.00436-0.15    
2.25e+07https://www.airbnb.com/rooms/22459805233       100      Apartment1297Private room1  112FALSETRUEBispebjergmoderate12.555.7932       2.97Nordvest3.150.00474-0.183   
2.25e+07https://www.airbnb.com/rooms/22530215598       1100400      Apartment25100Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.74.09e+033.61Center3.450.004870.157   
2.25e+07https://www.airbnb.com/rooms/22539491332       1300150      Apartment1999Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.655.72.23e+033.35Brokvarterer3.290.004440.0627  
2.26e+07https://www.airbnb.com/rooms/22564689405       10149      Apartment1098Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.22e+033.35Center3.420.00432-0.0748  
2.26e+07https://www.airbnb.com/rooms/22579197199       1180190      Apartment2398Private room1.5002TRUETRUEBispebjergmoderate12.555.71.74e+033.24Nordvest3.170.006120.0732  
2.26e+07https://www.airbnb.com/rooms/22594454352       100      Apartment1498Private room1  112FALSETRUEsterbromoderate12.655.71.41e+033.15Brokvarterer3.270.00331-0.122   
2.26e+07https://www.airbnb.com/rooms/22632431598       100      Apartment28100Private room1  112TRUETRUEValbymoderate12.555.72.39e+033.38West3.2 0.005840.181   
2.27e+07https://www.airbnb.com/rooms/22715827399       100      Apartment11100Private room1  112TRUETRUEIndre Byflexible12.655.71.6e+03 3.2 Center3.410.00487-0.204   
2.28e+07https://www.airbnb.com/rooms/22839284352       100      Apartment3498Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.41e+033.15Brokvarterer3.250.00317-0.0987  
2.28e+07https://www.airbnb.com/rooms/22840932372       25075      Apartment15100Private room2  112FALSETRUEBrnshj-Husummoderate12.555.71.54e+033.19West3.220.00672-0.0326  
2.28e+07https://www.airbnb.com/rooms/22844933598       12500      Apartment12100Private room1.5112TRUETRUENrrebroflexible12.555.72.64e+033.42Brokvarterer3.3 0.004640.12    
2.29e+07https://www.airbnb.com/rooms/22857727399       10100      Apartment1194Private room1  111FALSEFALSEValbyflexible12.555.72e+03       3.3 West3.1 0.005160.205   
2.29e+07https://www.airbnb.com/rooms/22857959392       150150      Townhouse9391Private room1  112FALSETRUEValbymoderate12.555.72.22e+033.35West3.180.009460.166   
2.29e+07https://www.airbnb.com/rooms/22875033452       100      Apartment6799Private room1.5112TRUETRUEAmager Vestflexible12.655.61.81e+033.26Amager3.280.00507-0.0264  
2.29e+07https://www.airbnb.com/rooms/22875266252       11000      Apartment4599Private room1  112TRUETRUEFrederiksbergmoderate12.555.71.11e+033.04Brokvarterer3.310.00404-0.262   
2.29e+07https://www.airbnb.com/rooms/22876836252       160100      Apartment2996Private room1  102TRUETRUEAmager Vestmoderate12.655.71.47e+033.17Amager3.270.00462-0.107   
2.29e+07https://www.airbnb.com/rooms/22925158485       1750      Apartment12100Private room1  102FALSETRUENrrebromoderate12.555.72.02e+033.3 Brokvarterer3.270.003380.0312  
2.29e+07https://www.airbnb.com/rooms/22949105418       110050      Apartment3296Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.61.97e+033.29Amager3.290.004730.00213 
2.3e+07 https://www.airbnb.com/rooms/23001413452       11000      Apartment12100Private room1  112FALSETRUEAmager stflexible12.655.71.91e+033.28Amager3.220.003860.0611  
2.31e+07https://www.airbnb.com/rooms/23088612286       1600      House14799Private room1  111TRUETRUEBrnshj-Husumflexible12.555.71.2e+03 3.08West3.170.00837-0.0925  
2.32e+07https://www.airbnb.com/rooms/23160214492       100      Apartment1990Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.97e+033.29Brokvarterer3.230.0031 0.0598  
2.32e+07https://www.airbnb.com/rooms/23173826352       100      Apartment1993Private room1  112FALSETRUENrrebroflexible12.555.71.41e+033.15Brokvarterer3.240.00305-0.0896  
2.32e+07https://www.airbnb.com/rooms/23211526452       2150100      House3598Private room1  224TRUETRUEAmager stmoderate12.655.71.96e+033.29Amager3.410.00677-0.122   
2.32e+07https://www.airbnb.com/rooms/23235538246       100      Other8098Private room1  101FALSETRUEVanlseflexible12.555.7984       2.99Nordvest3.180.00862-0.183   
2.33e+07https://www.airbnb.com/rooms/23271019399       100      Apartment11294Private room1  111FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.6e+03 3.2 Brokvarterer3.270.00486-0.0621  
2.33e+07https://www.airbnb.com/rooms/23291083379       11040      Condominium5497Private room1  112FALSEFALSEsterbrostrict_14_with_grace_period12.655.71.62e+033.21Brokvarterer3.310.00533-0.0979  
2.33e+07https://www.airbnb.com/rooms/23291437598       12000      Townhouse3298Private room1  122TRUEFALSEAmager Veststrict_14_with_grace_period12.655.72.59e+033.41Amager3.310.008710.106   
2.33e+07https://www.airbnb.com/rooms/23322561299       100      Apartment1297Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.2e+03 3.08Brokvarterer3.240.00309-0.164   
2.33e+07https://www.airbnb.com/rooms/23325848598       10150      Condominium3498Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.99e+033.48Brokvarterer3.310.005270.171   
2.34e+07https://www.airbnb.com/rooms/23353930598       100      Apartment2999Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.39e+033.38Brokvarterer3.320.004240.0559  
2.34e+07https://www.airbnb.com/rooms/23407106399       10100      Apartment10699Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.62e+03       3.3 Brokvarterer3.290.004660.00988 
2.34e+07https://www.airbnb.com/rooms/23410902452       11000      Apartment2499Private room1  112FALSETRUEIndre Byflexible12.655.71.91e+033.28Center3.380.00406-0.0978  
2.34e+07https://www.airbnb.com/rooms/23436840399       250150      Apartment1296Private room1  123FALSEFALSEAmager stflexible12.655.71.65e+033.22Amager3.250.00394-0.0338  
2.35e+07https://www.airbnb.com/rooms/23461373598       12750      Apartment2799Private room1  122FALSETRUEIndre Byflexible12.655.72.67e+033.43Center3.380.004060.0472  
2.35e+07https://www.airbnb.com/rooms/23492145698       100      Apartment9998Private room1  012TRUETRUEIndre Bymoderate12.655.72.79e+033.45Center3.4 0.005270.0452  
2.35e+07https://www.airbnb.com/rooms/23492723299       100      Apartment1491Private room1  112TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.2e+03 3.08Nordvest3.190.00558-0.116   
2.35e+07https://www.airbnb.com/rooms/23494797452       115070      Apartment3099Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.72.24e+033.35Brokvarterer3.290.003530.0563  
2.35e+07https://www.airbnb.com/rooms/23512954292       1150100      Apartment1297Private room1  112FALSETRUEAmager Vestmoderate12.655.71.72e+033.24Amager3.240.00395-0.00749 
2.36e+07https://www.airbnb.com/rooms/23562469452       12000      Apartment4099Private room1  112FALSETRUEsterbromoderate12.655.72.01e+033.3 Brokvarterer3.280.003370.0262  
2.36e+07https://www.airbnb.com/rooms/23573487399       2250150      Apartment1094Private room1  112FALSETRUEsterbroflexible12.655.71.85e+033.27Brokvarterer3.240.003060.0283  
2.36e+07https://www.airbnb.com/rooms/23589875246       12000      Apartment1395Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.18e+033.07Brokvarterer3.270.00327-0.193   
2.36e+07https://www.airbnb.com/rooms/23592812498       13000      Apartment2195Private room1  244FALSETRUENrrebroflexible12.555.72.29e+033.36Brokvarterer3.360.003560.00177 
2.36e+07https://www.airbnb.com/rooms/23620883372       12000      Apartment3993Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.69e+033.23Brokvarterer3.270.0033 -0.0411  
2.36e+07https://www.airbnb.com/rooms/23643275306       1500      Apartment2393Private room1  112TRUETRUENrrebroflexible12.655.71.27e+033.11Brokvarterer3.270.00408-0.163   
2.36e+07https://www.airbnb.com/rooms/23647001498       225075      House6198Private room1  034TRUETRUEBrnshj-Husumflexible12.555.72.24e+033.35West3.220.008270.131   
2.37e+07https://www.airbnb.com/rooms/23657190551       1100100      Condominium1293Private room1.5111FALSETRUEIndre Bymoderate12.655.72.7e+03 3.43Center3.4 0.0062 0.0336  
2.37e+07https://www.airbnb.com/rooms/23663828452       12000      Apartment1597Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.01e+033.3 Brokvarterer3.270.004110.0306  
2.37e+07https://www.airbnb.com/rooms/23665966399       1175400      Apartment2899Private room1  111TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.37e+033.53Center3.420.004970.11    
2.37e+07https://www.airbnb.com/rooms/23702407777       100      Apartment1593Private room1  112FALSETRUENrrebroflexible12.555.73.11e+033.49Brokvarterer3.240.003050.255   
2.37e+07https://www.airbnb.com/rooms/23729299299       1200120      Apartment2298Private room1  112TRUETRUEFrederiksbergflexible12.555.71.88e+033.27Brokvarterer3.270.00406-0.00142 
2.37e+07https://www.airbnb.com/rooms/23736875598       100      Apartment1996Private room1.5102FALSETRUEValbyflexible12.555.72.39e+033.38West3.160.005460.217   
2.38e+07https://www.airbnb.com/rooms/23778413352       20149      Apartment3897Private room1  112FALSETRUEAmager Vestmoderate12.655.61.41e+033.15Amager3.250.00397-0.0983  
2.38e+07https://www.airbnb.com/rooms/23786991452       100      Apartment8298Private room1  112TRUETRUEFrederiksbergflexible12.555.71.81e+033.26Brokvarterer3.280.00426-0.0277  
2.38e+07https://www.airbnb.com/rooms/23804616299       100      Apartment1298Private room1  111TRUETRUEValbystrict_14_with_grace_period12.555.71.2e+03 3.08West3.180.00614-0.0978  
2.39e+07https://www.airbnb.com/rooms/23853113252       170100      Apartment3695Private room1  111FALSEFALSEAmager Veststrict_14_with_grace_period12.655.61.48e+033.17Amager3.230.00426-0.0571  
2.39e+07https://www.airbnb.com/rooms/23874162332       1045      Apartment1394Private room1.5112FALSETRUEValbymoderate12.555.71.51e+033.18West3.180.0056 -0.0064  
2.39e+07https://www.airbnb.com/rooms/23890380352       250150      Apartment2298Private room1  112TRUETRUEVanlsemoderate12.555.71.46e+033.16Nordvest3.190.00537-0.0213  
2.39e+07https://www.airbnb.com/rooms/23907082518       100      Apartment2697Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.07e+033.32Brokvarterer3.3 0.004120.0155  
2.39e+07https://www.airbnb.com/rooms/23907955272       1225100      Apartment3698Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.555.71.71e+033.23Brokvarterer3.320.00419-0.089   
2.39e+07https://www.airbnb.com/rooms/23910241306       1400      Apartment12595Private room1  121FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.26e+033.1 Brokvarterer3.270.0052 -0.167   
2.4e+07 https://www.airbnb.com/rooms/23950448498       11000      Apartment22100Private room1  112FALSETRUEAmager stflexible12.655.72.09e+033.32Amager3.220.003870.0993  
2.4e+07 https://www.airbnb.com/rooms/23988750173       10222      Apartment3093Private room1  111TRUETRUEFrederiksbergflexible12.555.71.58e+033.2 Brokvarterer3.230.00416-0.0349  
2.4e+07 https://www.airbnb.com/rooms/23994265498       1500      Apartment2097Private room1  112FALSETRUENrrebroflexible12.655.72.04e+033.31Brokvarterer3.240.003080.0665  
2.4e+07 https://www.airbnb.com/rooms/24030154452       1200200      Apartment6897Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.81e+033.45Brokvarterer3.330.004220.122   
2.41e+07https://www.airbnb.com/rooms/24060593252       100      Condominium3298Private room1.5222TRUETRUEBrnshj-Husummoderate12.555.71.01e+033   West3.280.00742-0.277   
2.41e+07https://www.airbnb.com/rooms/24073200591       1350      Apartment5996Private room1  101FALSETRUEVesterbro-Kongens Enghaveflexible12.655.62.4e+03 3.38Brokvarterer3.210.003550.167   
2.41e+07https://www.airbnb.com/rooms/24073846352       100      Apartment3897Private room1  012FALSETRUEAmager Vestflexible12.655.71.41e+033.15Amager3.170.00428-0.026   
2.41e+07https://www.airbnb.com/rooms/24074203352       100      Apartment3297Private room1  111FALSETRUEAmager stflexible12.655.71.41e+033.15Amager3.180.00394-0.0345  
2.41e+07https://www.airbnb.com/rooms/24075058299       100      Condominium1293Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.655.71.2e+03 3.08Brokvarterer3.290.00601-0.211   
2.41e+07https://www.airbnb.com/rooms/24145034385       2300100      Apartment6498Private room1  254TRUETRUEBrnshj-Husumflexible12.555.71.84e+033.26West3.290.00605-0.0271  
2.42e+07https://www.airbnb.com/rooms/24194670498       100      Apartment10100Private room1  112FALSETRUENrrebroflexible12.555.71.99e+033.3 Brokvarterer3.250.0032 0.0535  
2.42e+07https://www.airbnb.com/rooms/24214597498       1500      Apartment11100Private room1  112FALSEFALSEFrederiksbergflexible12.555.72.04e+033.31Brokvarterer3.250.0032 0.0641  
2.42e+07https://www.airbnb.com/rooms/24218689412       275149      Apartment2998Private room1  112TRUETRUEIndre Bymoderate12.655.71.72e+033.24Center3.430.00476-0.198   
2.42e+07https://www.airbnb.com/rooms/24225655352       10100      Apartment5496Private room1  113FALSEFALSEBispebjergflexible12.555.71.81e+033.26Nordvest3.170.004930.0897  
2.42e+07https://www.airbnb.com/rooms/24238721239       110050      Apartment1090Private room0.5112FALSEFALSENrrebroflexible12.555.71.26e+033.1 Brokvarterer3.210.00383-0.107   
2.43e+07https://www.airbnb.com/rooms/24276151259       115060      Condominium12100Private room1  112FALSETRUENrrebroflexible12.555.71.43e+033.15Brokvarterer3.260.00512-0.104   
2.43e+07https://www.airbnb.com/rooms/24280324352       100      Apartment12100Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.71.41e+033.15Brokvarterer3.320.00441-0.173   
2.44e+07https://www.airbnb.com/rooms/24383331292       100      Apartment2291Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.17e+033.07Brokvarterer3.2 0.00321-0.133   
2.44e+07https://www.airbnb.com/rooms/24423873412       100      Apartment1290Private room1  112TRUETRUEAmager Vestmoderate12.655.61.65e+033.22Amager3.260.00487-0.0458  
2.44e+07https://www.airbnb.com/rooms/24437935299       12500      Apartment6899Private room1  122TRUETRUEAmager stflexible12.655.71.45e+033.16Amager3.260.00465-0.097   
2.44e+07https://www.airbnb.com/rooms/24443010392       11500      Apartment1098Private room1  112FALSETRUEsterbromoderate12.655.71.72e+033.24Brokvarterer3.270.00333-0.0351  
2.45e+07https://www.airbnb.com/rooms/24463943472       21000      Apartment60100Private room1.5112TRUETRUENrrebromoderate12.655.71.99e+033.3 Brokvarterer3.340.00455-0.0388  
2.45e+07https://www.airbnb.com/rooms/24463988279       100      Apartment1693Private room1  122FALSETRUEFrederiksbergflexible12.555.71.12e+033.05Brokvarterer3.240.00305-0.19    
2.45e+07https://www.airbnb.com/rooms/24488606252       11200      Apartment1899Private room1  111FALSETRUEFrederiksbergmoderate12.555.71.13e+033.05Brokvarterer3.240.00344-0.185   
2.45e+07https://www.airbnb.com/rooms/24495170651       2075      Other6299Private room1  132TRUETRUEAmager stmoderate12.655.72.6e+03 3.42Amager3.360.008120.0592  
2.45e+07https://www.airbnb.com/rooms/24503591598       1250250      Apartment1798Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.555.73.64e+033.56Brokvarterer3.320.004330.242   
2.46e+07https://www.airbnb.com/rooms/24559287605       100      Apartment17100Private room1  112TRUETRUEsterbroflexible12.655.72.42e+033.38Brokvarterer3.280.004120.107   
2.46e+07https://www.airbnb.com/rooms/24567043146       18050      Apartment13292Private room1  122FALSEFALSENrrebroflexible12.555.7864       2.94Brokvarterer3.260.00522-0.32    
2.46e+07https://www.airbnb.com/rooms/24573443492       12000      Apartment1398Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.17e+033.34Brokvarterer3.240.004230.0989  
2.46e+07https://www.airbnb.com/rooms/24616521279       1300      Apartment2395Private room1  112FALSETRUEAmager stflexible12.655.71.15e+033.06Amager3.210.00375-0.156   
2.47e+07https://www.airbnb.com/rooms/24653444498       10150      Apartment2099Private room1  111TRUEFALSEIndre Bystrict_14_with_grace_period12.655.72.59e+033.41Center3.420.00503-0.0032  
2.47e+07https://www.airbnb.com/rooms/24656698505       20186      Condominium10597Private room1  133TRUETRUEsterbroflexible12.655.72.02e+033.31Brokvarterer3.340.0061 -0.0304  
2.47e+07https://www.airbnb.com/rooms/24660041312       100      Apartment2298Private room1  111FALSETRUENrrebroflexible12.655.71.25e+033.1 Brokvarterer3.210.00324-0.113   
2.47e+07https://www.airbnb.com/rooms/24669603452       2275235      Condominium2498Private room1  123TRUEFALSEsterbromoderate12.655.72.08e+033.32Brokvarterer3.350.00578-0.0315  
2.47e+07https://www.airbnb.com/rooms/24746456591       100      Apartment5197Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.36e+033.37Brokvarterer3.280.003990.0954  
2.48e+07https://www.airbnb.com/rooms/24775429299       1150150      Apartment1196Private room1  112FALSETRUEAmager stmoderate12.655.71.95e+033.29Amager3.240.003940.0481  
2.48e+07https://www.airbnb.com/rooms/24776774452       10200      Apartment2296Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.61e+033.42Brokvarterer3.270.003260.147   
2.48e+07https://www.airbnb.com/rooms/24799574299       11000      Apartment2493Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.3e+03 3.11Brokvarterer3.280.00344-0.172   
2.49e+07https://www.airbnb.com/rooms/24913355452       1250200      Apartment2896Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.86e+033.46Brokvarterer3.270.004020.183   
2.49e+07https://www.airbnb.com/rooms/24929917538       189112      Apartment1699Private room1  112TRUETRUEIndre Bymoderate12.655.72.69e+033.43Center3.430.00489-0.00373 
2.5e+07 https://www.airbnb.com/rooms/24973439252       100      House1393Private room0.5111FALSETRUEVanlseflexible12.555.71.01e+033   Nordvest3.080.00755-0.0737  
2.5e+07 https://www.airbnb.com/rooms/24990957352       100      Apartment22995Private room1  112FALSETRUEBrnshj-Husummoderate12.555.71.41e+033.15West3.2 0.00939-0.0478  
2.5e+07 https://www.airbnb.com/rooms/24998199399       14500      House1794Private room1  112FALSETRUEVanlsemoderate12.555.72.05e+033.31Nordvest3.170.0069 0.142   
2.5e+07 https://www.airbnb.com/rooms/25038664751       1100400      Apartment1293Private room1  111FALSETRUEAmager Vestflexible12.655.74.7e+03 3.67Amager3.170.003870.498   
2.51e+07https://www.airbnb.com/rooms/25113583299       1500      Apartment1397Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.25e+033.1 Brokvarterer3.270.00329-0.174   
2.52e+07https://www.airbnb.com/rooms/25180496399       10200      House2397Private room2  234TRUETRUEValbymoderate12.555.72.4e+03 3.38West3.380.00739-0.00318 
2.52e+07https://www.airbnb.com/rooms/25196286332       100      Apartment7596Private room1  112FALSETRUEAmager Vestmoderate12.655.61.33e+033.12Amager3.250.00437-0.129   
2.52e+07https://www.airbnb.com/rooms/25241611432       1600      Apartment6196Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.79e+033.25Brokvarterer3.290.0037 -0.0426  
2.53e+07https://www.airbnb.com/rooms/25272377498       100      Apartment11100Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.99e+033.3 Amager3.270.004210.0343  
2.53e+07https://www.airbnb.com/rooms/25310752399       100      Other1596Private room1  122FALSETRUEValbyflexible12.555.71.6e+03 3.2 West3.210.00838-0.00465 
2.53e+07https://www.airbnb.com/rooms/25334142724       100      Apartment3199Private room1  112TRUETRUEAmager Vestflexible12.655.72.9e+03 3.46Amager3.250.004550.211   
2.54e+07https://www.airbnb.com/rooms/25377352452       100      Apartment1597Private room1  111FALSETRUEValbyflexible12.555.71.81e+033.26West3.1 0.005190.158   
2.54e+07https://www.airbnb.com/rooms/25410304996       4350200      Condominium11392Private room1  124FALSETRUEIndre Bystrict_14_with_grace_period12.655.74.33e+033.64Center3.510.006720.123   
2.54e+07https://www.airbnb.com/rooms/25414560399       11500      Apartment1898Private room1  133TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.75e+033.24Brokvarterer3.310.00427-0.0678  
2.54e+07https://www.airbnb.com/rooms/25434051352       100      House2592Private room1  112FALSETRUEVanlseflexible12.555.71.41e+033.15Nordvest3.140.006810.00825 
2.54e+07https://www.airbnb.com/rooms/25436765299       1100200      Apartment2697Private room1  112TRUETRUENrrebroflexible12.655.72.1e+03 3.32Brokvarterer3.270.004030.0474  
2.55e+07https://www.airbnb.com/rooms/25450717319       12000      Apartment2598Private room1  112TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.48e+033.17Nordvest3.2 0.00548-0.0353  
2.55e+07https://www.airbnb.com/rooms/25453852518       100      Apartment5096Private room1  112FALSETRUEBrnshj-Husummoderate12.555.72.07e+033.32West3.170.005370.149   
2.55e+07https://www.airbnb.com/rooms/25472279598       1050      Apartment2692Private room1  112TRUETRUEFrederiksbergflexible12.655.72.59e+033.41Brokvarterer3.270.004080.146   
2.55e+07https://www.airbnb.com/rooms/25475287352       2100200      Apartment4492Private room1  113FALSEFALSEAmager Vestflexible12.655.61.51e+033.18Amager3.250.00403-0.072   
2.55e+07https://www.airbnb.com/rooms/25476656551       10300      Other2498Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.63.4e+03 3.53Amager3.340.007980.194   
2.55e+07https://www.airbnb.com/rooms/25509436498       100      House2394Private room1  112TRUETRUEValbymoderate12.555.71.99e+033.3 West3.210.0073 0.091   
2.55e+07https://www.airbnb.com/rooms/25524405299       1300250      Condominium6598Private room1  112TRUETRUEsterbromoderate12.655.72.5e+03 3.4 Brokvarterer3.320.005580.076   
2.56e+07https://www.airbnb.com/rooms/25595163352       11000      Apartment1896Private room1  122TRUETRUEsterbrostrict_14_with_grace_period12.655.71.51e+033.18Brokvarterer3.320.00432-0.139   
2.56e+07https://www.airbnb.com/rooms/25601750485       10149      Apartment2294Private room1  012FALSETRUENrrebromoderate12.555.72.54e+033.4 Brokvarterer3.220.003810.183   
2.58e+07https://www.airbnb.com/rooms/25764697638       100      Apartment11100Private room2  122FALSETRUEAmager Vestmoderate12.655.72.55e+033.41Amager3.3 0.005760.107   
2.58e+07https://www.airbnb.com/rooms/25768380352       100      Apartment1298Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.41e+033.15Brokvarterer3.240.00312-0.0949  
2.58e+07https://www.airbnb.com/rooms/25795163399       11000      Apartment5999Private room1  112TRUETRUEFrederiksbergflexible12.555.71.7e+03 3.23Brokvarterer3.280.00405-0.0528  
2.58e+07https://www.airbnb.com/rooms/25795355352       13000      Apartment1496Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.71e+033.23Brokvarterer3.270.00328-0.0357  
2.58e+07https://www.airbnb.com/rooms/25839064797       1349100      Apartment1599Private room1  122FALSETRUEIndre Bymoderate12.655.73.94e+033.6 Center3.4 0.004220.191   
2.59e+07https://www.airbnb.com/rooms/25851499279       14250      Apartment1497Private room1  112TRUETRUEIndre Byflexible12.655.71.54e+033.19Center3.4 0.0048 -0.216   
2.59e+07https://www.airbnb.com/rooms/25860958306       100      Apartment2791Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.22e+033.09Brokvarterer3.2 0.00323-0.113   
2.59e+07https://www.airbnb.com/rooms/25888835199       100      Apartment1593Private room1  111FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.7796       2.9 West3.140.0055 -0.239   
2.59e+07https://www.airbnb.com/rooms/25901897352       100      Condominium13100Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.41e+033.15Brokvarterer3.260.00512-0.11    
2.6e+07 https://www.airbnb.com/rooms/25974845399       100      Townhouse2995Private room1  112TRUETRUEAmager Vestmoderate12.655.61.6e+03 3.2 Amager3.280.00863-0.0817  
2.6e+07 https://www.airbnb.com/rooms/26015249498       11000      Apartment1398Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.72.09e+033.32Brokvarterer3.290.003520.0312  
2.61e+07https://www.airbnb.com/rooms/26058894319       1150175      Apartment4799Private room1  112TRUETRUEsterbromoderate12.655.72.13e+033.33Brokvarterer3.310.004040.0204  
2.61e+07https://www.airbnb.com/rooms/26090392711       100      House5092Private room1  244FALSETRUEAmager Vestmoderate12.655.62.84e+033.45Amager3.380.006390.0753  
2.61e+07https://www.airbnb.com/rooms/26091194452       100      Apartment4796Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.81e+033.26Brokvarterer3.280.00398-0.0191  
2.61e+07https://www.airbnb.com/rooms/26091466751       100      House1198Private room1  113FALSEFALSEValbystrict_14_with_grace_period12.555.73e+03       3.48West3.240.007040.241   
2.61e+07https://www.airbnb.com/rooms/26116212551       11000      Apartment2498Private room1  101TRUETRUEAmager Vestmoderate12.655.72.3e+03 3.36Amager3.240.004770.123   
2.61e+07https://www.airbnb.com/rooms/26116747299       100      Apartment1892Private room1  111FALSETRUEAmager Vestflexible12.655.71.2e+03 3.08Amager3.170.00388-0.0964  
2.61e+07https://www.airbnb.com/rooms/26127713452       100      Apartment3892Private room1  112FALSETRUENrrebroflexible12.555.71.81e+033.26Brokvarterer3.240.003140.0171  
2.62e+07https://www.airbnb.com/rooms/26219800498       100      Apartment7599Private room1  123TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer3.320.00434-0.0216  
2.63e+07https://www.airbnb.com/rooms/26287612352       100      Apartment2699Private room1  112TRUETRUEFrederiksbergmoderate12.655.71.41e+033.15Brokvarterer3.3 0.00413-0.155   
2.63e+07https://www.airbnb.com/rooms/26301533299       100      Apartment1196Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.2e+03 3.08Center3.380.00442-0.304   
2.63e+07https://www.airbnb.com/rooms/26341942452       21500      Apartment2399Private room1  012FALSETRUEFrederiksbergmoderate12.555.71.96e+033.29Brokvarterer3.230.003880.0636  
2.63e+07https://www.airbnb.com/rooms/26348659359       1112186      Apartment17100Private room1  112FALSETRUENrrebroflexible12.655.72.29e+033.36Brokvarterer3.250.003190.113   
2.64e+07https://www.airbnb.com/rooms/26378192299       1100200      Apartment2195Private room1  111FALSETRUEIndre Byflexible12.655.72.1e+03 3.32Center3.340.00411-0.0153  
2.65e+07https://www.airbnb.com/rooms/26462213259       13000      Apartment1794Private room1  114FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.34e+033.13Brokvarterer3.360.00411-0.231   
2.65e+07https://www.airbnb.com/rooms/26471013498       1300100      Other1397Private room2  346FALSETRUEBrnshj-Husummoderate12.555.72.69e+033.43West3.520.00913-0.0933  
2.65e+07https://www.airbnb.com/rooms/26522009279       11120      Apartment3393Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.23e+033.09Amager3.260.0041 -0.17    
2.65e+07https://www.airbnb.com/rooms/26528638452       20330      Apartment2793Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.61.81e+033.26Brokvarterer3.3 0.00416-0.0387  
2.66e+07https://www.airbnb.com/rooms/26580583299       1080      Apartment2698Private room1  112TRUETRUEAmager Vestflexible12.655.71.52e+033.18Amager3.250.00456-0.068   
2.66e+07https://www.airbnb.com/rooms/266456481.2e+03 100      Apartment1098Private room1  224TRUETRUEFrederiksbergmoderate12.555.74.81e+033.68Brokvarterer3.420.004630.265   
2.67e+07https://www.airbnb.com/rooms/26674573452       4250200      Apartment1897Private room1  122TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.62.06e+033.31Brokvarterer3.320.00432-0.00488 
2.67e+07https://www.airbnb.com/rooms/26699386897       1100100      Condominium1597Private room1.5144TRUETRUENrrebromoderate12.555.74.09e+033.61Brokvarterer3.410.006370.202   
2.68e+07https://www.airbnb.com/rooms/26754985352       24000      Apartment3496Private room1  112TRUETRUEAmager Vestmoderate12.655.71.81e+033.26Amager3.270.0046 -0.0172  
2.68e+07https://www.airbnb.com/rooms/26764365698       11500      Apartment11100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.94e+033.47Brokvarterer3.270.003390.196   
2.68e+07https://www.airbnb.com/rooms/26775780485       22100      Apartment6499Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.15e+033.33Brokvarterer3.280.003640.0518  
2.69e+07https://www.airbnb.com/rooms/26861850751       100      Apartment1499Private room1  122FALSETRUEIndre Byflexible12.655.73e+03       3.48Center3.380.004080.101   
2.69e+07https://www.airbnb.com/rooms/26920626399       1100200      House3199Private room1  112TRUETRUEVanlsemoderate12.555.72.5e+03 3.4 Nordvest3.210.007360.19    
2.69e+07https://www.airbnb.com/rooms/26928875651       12500      Apartment3099Private room1  112TRUETRUEIndre Byflexible12.655.72.85e+033.46Center3.410.0047 0.0467  
2.7e+07 https://www.airbnb.com/rooms/27007041299       10200      Apartment51100Private room1  112TRUETRUEVanlseflexible12.555.72e+03       3.3 Nordvest3.170.0053 0.134   
2.7e+07 https://www.airbnb.com/rooms/27038918598       2190125      Apartment21100Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.62.58e+033.41Brokvarterer3.3 0.004180.108   
2.71e+07https://www.airbnb.com/rooms/27060073352       120050      Apartment1096Private room1  112FALSETRUENrrebromoderate12.655.71.81e+033.26Brokvarterer3.270.0033 -0.0103  
2.71e+07https://www.airbnb.com/rooms/27073990498       11000      Apartment1298Private room1  122FALSETRUEAmager Vestflexible12.655.72.09e+033.32Amager3.220.0038 0.104   
2.71e+07https://www.airbnb.com/rooms/27096271299       11000      Other1497Private room1.5111TRUETRUEVanlsemoderate12.555.71.3e+03 3.11Nordvest3.250.00894-0.134   
2.71e+07https://www.airbnb.com/rooms/27117348339       1500      Apartment1891Private room1.5111FALSETRUEAmager Vestflexible12.655.61.41e+033.15Amager3.2 0.00446-0.0514  
2.71e+07https://www.airbnb.com/rooms/27130140419       2095      Apartment3391Private room1  122FALSEFALSENrrebromoderate12.555.71.68e+033.22Brokvarterer3.260.0033 -0.0406  
2.72e+07https://www.airbnb.com/rooms/27157444299       100      Apartment1291Private room1  112FALSETRUEFrederiksbergflexible12.655.71.2e+03 3.08Brokvarterer3.230.00308-0.157   
2.72e+07https://www.airbnb.com/rooms/27162207352       25090      Condominium4191Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.46e+033.16Brokvarterer3.3 0.00528-0.134   
2.72e+07https://www.airbnb.com/rooms/27182932392       100      Apartment1096Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.57e+033.2 Amager3.260.00413-0.0643  
2.72e+07https://www.airbnb.com/rooms/27195803452       2300200      Apartment1196Private room1  134FALSETRUENrrebromoderate12.655.72.11e+033.32Brokvarterer3.340.00403-0.0156  
2.73e+07https://www.airbnb.com/rooms/27324748332       100      Apartment1699Private room1  113TRUEFALSEIndre Byflexible12.655.71.33e+033.12Center3.440.00493-0.319   
2.73e+07https://www.airbnb.com/rooms/27349949452       2100100      House2298Private room1  122TRUETRUEBrnshj-Husumflexible12.555.71.91e+033.28West3.190.007210.0942  
2.74e+07https://www.airbnb.com/rooms/27376697352       1100125      Apartment5597Private room1  123FALSETRUEIndre Byflexible12.655.72.01e+033.3 Center3.420.00431-0.114   
2.74e+07https://www.airbnb.com/rooms/27415047452       11500      Apartment2299Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.96e+033.29Brokvarterer3.280.004070.0159  
2.74e+07https://www.airbnb.com/rooms/27417747651       1150100      Apartment26100Private room1  112TRUETRUENrrebromoderate12.555.73.15e+033.5 Brokvarterer3.3 0.004140.194   
2.74e+07https://www.airbnb.com/rooms/27429498923       2133326      Apartment6495Private room1  133FALSETRUEIndre Bymoderate12.655.73.82e+033.58Center3.440.004420.14    
2.75e+07https://www.airbnb.com/rooms/27462902724       2172149      Apartment11996Private room1.5113FALSETRUENrrebroflexible12.655.73.07e+033.49Brokvarterer3.320.005360.165   
2.75e+07https://www.airbnb.com/rooms/27477327399       10350      Apartment1795Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.63e+03       3.48Brokvarterer3.3 0.004210.18    
2.75e+07https://www.airbnb.com/rooms/27504405492       215099      Apartment2493Private room1  114FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.12e+033.33Brokvarterer3.310.003830.0151  
2.75e+07https://www.airbnb.com/rooms/27539326312       1150100      Apartment7593Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.8e+03 3.25Brokvarterer3.290.00391-0.0386  
2.76e+07https://www.airbnb.com/rooms/27567537452       100      Apartment2297Private room1  112FALSETRUEAmager Vestflexible12.655.61.81e+033.26Amager3.220.003780.0399  
2.76e+07https://www.airbnb.com/rooms/27585955498       100      Apartment3599Private room1  112TRUETRUEsterbromoderate12.655.71.99e+033.3 Brokvarterer3.310.00407-0.0058  
2.77e+07https://www.airbnb.com/rooms/27673264797       100      Apartment1392Private room1  112FALSETRUEIndre Byflexible12.655.73.19e+033.5 Center3.370.004  0.136   
2.77e+07https://www.airbnb.com/rooms/27673730345       11250      Condominium2499Private room1  122TRUETRUEsterbromoderate12.655.71.5e+03 3.18Brokvarterer3.320.00566-0.138   
2.77e+07https://www.airbnb.com/rooms/27689228724       2150100      Apartment12095Private room1.5112FALSETRUENrrebroflexible12.655.73.05e+033.48Brokvarterer3.280.005310.199   
2.78e+07https://www.airbnb.com/rooms/27801239498       2150200      Apartment8996Private room1  224TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.14e+033.33Brokvarterer3.450.0047 -0.116   
2.78e+07https://www.airbnb.com/rooms/27827764319       115060      Townhouse1899Private room1  112TRUETRUEValbyflexible12.555.71.67e+033.22West3.180.009350.041   
2.78e+07https://www.airbnb.com/rooms/27841489498       100      Apartment1290Private room1  112FALSETRUEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer3.230.003110.0662  
2.79e+07https://www.airbnb.com/rooms/27865214352       100      Condominium7797Private room1  111TRUETRUEsterbroflexible12.655.71.41e+033.15Brokvarterer3.260.00581-0.111   
2.79e+07https://www.airbnb.com/rooms/27893640498       10200      House4198Private room1  114FALSETRUEAmager Vestflexible12.655.62.79e+033.45Amager3.310.006710.133   
2.79e+07https://www.airbnb.com/rooms/27922276319       112050      Apartment2199Private room1  112FALSEFALSEsterbrostrict_14_with_grace_period12.655.71.6e+03 3.2 Brokvarterer3.290.00352-0.089   
2.8e+07 https://www.airbnb.com/rooms/27955839372       150125      Apartment2195Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.04e+033.31Brokvarterer3.240.003050.0681  
2.8e+07 https://www.airbnb.com/rooms/28013076372       100      Apartment3998Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.49e+033.17Brokvarterer3.320.00418-0.151   
2.8e+07 https://www.airbnb.com/rooms/28041836452       1100150      Apartment4498Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.51e+033.4 Brokvarterer3.240.0041 0.157   
2.8e+07 https://www.airbnb.com/rooms/28042806399       100      Apartment12896Private room1  112TRUETRUEIndre Bymoderate12.655.71.6e+03 3.2 Center3.450.00538-0.245   
2.81e+07https://www.airbnb.com/rooms/28057934452       10200      Apartment2099Private room1.5112TRUETRUEsterbromoderate12.655.72.61e+033.42Brokvarterer3.330.004630.0872  
2.81e+07https://www.airbnb.com/rooms/28133361751       2100200      Apartment8597Private room1  113TRUEFALSEAmager stmoderate12.655.73.1e+03 3.49Amager3.320.004890.172   
2.82e+07https://www.airbnb.com/rooms/28158305452       1250250      Apartment2091Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.73.06e+033.49Brokvarterer3.2 0.003210.286   
2.82e+07https://www.airbnb.com/rooms/28177829399       1100175      Apartment1293Private room1.5112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.4e+03 3.38Brokvarterer3.310.004010.0703  
2.82e+07https://www.airbnb.com/rooms/28182299279       15050      Apartment1096Private room1  112FALSEFALSEAmager stmoderate12.655.71.37e+033.14Amager3.240.00394-0.105   
2.82e+07https://www.airbnb.com/rooms/28248912598       2200200      Apartment1494Private room1  122TRUETRUEBispebjergstrict_14_with_grace_period12.555.72.59e+033.41Nordvest3.2 0.005540.216   
2.83e+07https://www.airbnb.com/rooms/28281614651       11500      Apartment1891Private room1  224TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.75e+033.44Brokvarterer3.430.004690.0122  
2.84e+07https://www.airbnb.com/rooms/28397812199       1140120      Apartment1096Private room1  112FALSETRUEBispebjergstrict_14_with_grace_period12.555.71.42e+033.15Nordvest3.170.00488-0.0187  
2.86e+07https://www.airbnb.com/rooms/28578399578       100      Apartment1198Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.31e+033.36Brokvarterer3.270.004150.0912  
2.86e+07https://www.airbnb.com/rooms/28621813299       1200160      Apartment3095Private room1  122TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.04e+033.31Brokvarterer3.320.00423-0.00898 
2.87e+07https://www.airbnb.com/rooms/28684881498       11000      Apartment1599Private room1  112TRUETRUEsterbroflexible12.655.72.09e+033.32Brokvarterer3.270.004130.0458  
2.87e+07https://www.airbnb.com/rooms/28691380399       21000      Apartment5597Private room1.5112TRUETRUENrrebromoderate12.655.71.7e+03 3.23Brokvarterer3.330.00452-0.103   
2.88e+07https://www.airbnb.com/rooms/28794953392       100      Apartment1494Private room1  112FALSEFALSEAmager Vestflexible12.655.61.57e+033.2 Amager3.210.00374-0.0167  
2.88e+07https://www.airbnb.com/rooms/28798805478       1700      Apartment16100Private room1  112FALSETRUEBispebjergmoderate12.555.71.98e+033.3 Nordvest3.160.0048 0.14    
2.88e+07https://www.airbnb.com/rooms/28803714199       1080      Apartment2993Private room1  122FALSETRUENrrebroflexible12.555.71.12e+033.05Brokvarterer3.240.00307-0.192   
2.88e+07https://www.airbnb.com/rooms/28826719345       133247      Apartment2598Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.555.71.9e+03 3.28Brokvarterer3.280.00439-0.00616 
2.89e+07https://www.airbnb.com/rooms/28860049352       21100      Condominium1497Private room1  112TRUETRUEVanlsemoderate12.555.71.52e+033.18Nordvest3.190.00663-0.0135  
2.9e+07 https://www.airbnb.com/rooms/28984553498       100      Apartment1198Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer3.270.004150.0265  
2.9e+07 https://www.airbnb.com/rooms/28993535399       100      House4998Private room1  111TRUETRUEAmager Vestmoderate12.655.61.6e+03 3.2 Amager3.260.00695-0.0595  
2.9e+07 https://www.airbnb.com/rooms/28994811352       1200150      Apartment1893Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.655.62.21e+033.34Brokvarterer3.230.0034 0.115   
2.9e+07 https://www.airbnb.com/rooms/29000870299       11000      Apartment2299Private room1  111TRUEFALSEAmager Veststrict_14_with_grace_period12.655.71.3e+03 3.11Amager3.260.00493-0.146   
2.9e+07 https://www.airbnb.com/rooms/290045351.25e+0312500      Apartment1997Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.75.25e+033.72Center3.450.0049 0.27    
2.9e+07 https://www.airbnb.com/rooms/29018351326       1075      Apartment10100Private room2  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.6e+03 3.21Brokvarterer3.330.00535-0.121   
2.91e+07https://www.airbnb.com/rooms/29097401352       100      Apartment1398Private room1  112FALSETRUEAmager Vestflexible12.655.71.41e+033.15Amager3.220.0038 -0.0685  
2.91e+07https://www.airbnb.com/rooms/29108565352       100      Condominium1599Private room1  111FALSETRUEsterbromoderate12.655.71.41e+033.15Brokvarterer3.250.00524-0.1     
2.92e+07https://www.airbnb.com/rooms/29173710159       1100115      Apartment1198Private room1  111TRUETRUEValbymoderate12.555.71.2e+03 3.08West3.160.00602-0.0789  
2.92e+07https://www.airbnb.com/rooms/29176083299       1085      Apartment5790Private room1  112FALSETRUENrrebroflexible12.555.71.54e+033.19Brokvarterer3.240.00341-0.0543  
2.93e+07https://www.airbnb.com/rooms/29255888498       2120120      Townhouse2395Private room1  255FALSETRUEsterbromoderate12.655.72.11e+033.32Brokvarterer3.430.00847-0.109   
2.93e+07https://www.airbnb.com/rooms/29273471219       100      Apartment1594Private room1  112FALSETRUEAmager Vestflexible12.655.6876       2.94Amager3.210.00374-0.27    
2.93e+07https://www.airbnb.com/rooms/29324266618       1100150      Apartment2793Private room1  123FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.73.17e+033.5 Brokvarterer3.3 0.003470.199   
2.93e+07https://www.airbnb.com/rooms/29348750452       1150130      Apartment11399Private room1.5112TRUEFALSEIndre Bymoderate12.655.72.48e+033.39Center3.480.0055 -0.0823  
2.94e+07https://www.airbnb.com/rooms/29357285498       11000      Apartment1799Private room1  112TRUETRUEAmager Vestmoderate12.655.72.09e+033.32Amager3.280.004710.0452  
2.94e+07https://www.airbnb.com/rooms/29412484399       1500      Apartment1096Private room1  112TRUETRUENrrebroflexible12.555.71.65e+033.22Brokvarterer3.270.00416-0.0536  
2.94e+07https://www.airbnb.com/rooms/29448676498       100      Apartment1196Private room1  122FALSETRUEAmager Vestflexible12.655.71.99e+033.3 Amager3.210.003760.0852  
2.95e+07https://www.airbnb.com/rooms/29475254299       100      Apartment1298Private room1  112FALSETRUEBispebjergflexible12.555.71.2e+03 3.08Nordvest3.130.00459-0.0493  
2.95e+07https://www.airbnb.com/rooms/29505077399       12500      Apartment6092Private room1.5112FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.85e+033.27Center3.450.00474-0.181   
2.95e+07https://www.airbnb.com/rooms/29528219412       1080      Apartment2899Private room1  112TRUETRUEAmager Vestmoderate12.655.71.97e+033.29Amager3.280.004630.0168  
2.96e+07https://www.airbnb.com/rooms/29584810299       100      Apartment12490Private room1  112FALSETRUEValbyflexible12.555.71.2e+03 3.08West3.140.00651-0.0673  
2.96e+07https://www.airbnb.com/rooms/29608528452       1050      Apartment10100Private room1  112FALSETRUENrrebroflexible12.655.72.01e+033.3 Brokvarterer3.250.0032 0.057   
2.96e+07https://www.airbnb.com/rooms/29621032292       14050      Apartment10099Private room1  112TRUETRUENrrebroflexible12.655.71.41e+033.15Brokvarterer3.290.00455-0.141   
2.96e+07https://www.airbnb.com/rooms/29627657399       1150150      Apartment6991Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.35e+033.37Brokvarterer3.270.003680.0993  
2.96e+07https://www.airbnb.com/rooms/29648464558       210050      Apartment21100Private room1  113TRUETRUEsterbrostrict_14_with_grace_period12.655.72.33e+033.37Brokvarterer3.360.004470.00904 
2.97e+07https://www.airbnb.com/rooms/29680613299       120095      Apartment8296Private room1  112TRUETRUEBispebjergflexible12.555.71.78e+033.25Nordvest3.170.005480.0836  
2.97e+07https://www.airbnb.com/rooms/29704590219       1150100      Apartment1996Private room1  112FALSETRUEValbyflexible12.555.71.43e+033.15West3.130.005080.0192  
2.97e+07https://www.airbnb.com/rooms/29732726279       1150150      Apartment2491Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.87e+033.27Brokvarterer3.240.003080.0345  
2.98e+07https://www.airbnb.com/rooms/29756997698       12500      Apartment1696Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.655.73.04e+033.48Brokvarterer3.3 0.004210.185   
2.99e+07https://www.airbnb.com/rooms/29854096624       27550      Apartment1897Private room1  122TRUETRUEAmager Vestflexible12.655.62.57e+033.41Amager3.250.0046 0.164   
2.99e+07https://www.airbnb.com/rooms/29897239498       21000      Apartment2499Private room1  112FALSETRUENrrebromoderate12.655.72.09e+033.32Brokvarterer3.270.003320.0468  
2.99e+07https://www.airbnb.com/rooms/29940606352       100      Apartment2698Private room1  111TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.41e+033.15Brokvarterer3.290.00438-0.136   
3e+07       https://www.airbnb.com/rooms/29953897266       1050      Apartment1896Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.26e+033.1 Brokvarterer3.270.00326-0.167   
3e+07       https://www.airbnb.com/rooms/29960791252       100      Apartment2297Private room1  111TRUETRUEValbyflexible12.555.71.01e+033   West3.130.00583-0.127   
3.01e+07https://www.airbnb.com/rooms/30088108199       100      Apartment14100Private room2  122TRUETRUEVesterbro-Kongens Enghaveflexible12.555.6796       2.9 Brokvarterer3.330.00589-0.428   
3.01e+07https://www.airbnb.com/rooms/30101131252       11000      Apartment5999Private room1  122TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.11e+033.04Nordvest3.210.00546-0.167   
3.01e+07https://www.airbnb.com/rooms/30105029399       100      Apartment6690Private room1  111FALSETRUEIndre Bymoderate12.655.71.6e+03 3.2 Center3.360.0045 -0.162   
3.01e+07https://www.airbnb.com/rooms/30148649399       10100      Apartment5497Private room1  112TRUETRUEAmager Vestflexible12.655.72e+03       3.3 Amager3.250.004550.048   
3.02e+07https://www.airbnb.com/rooms/30174695505       1224224      Apartment2099Private room1  112TRUETRUEIndre Bymoderate12.655.73.14e+033.5 Center3.430.004840.0629  
3.02e+07https://www.airbnb.com/rooms/30190432399       11000      Apartment1898Private room1  112TRUETRUEAmager stflexible12.655.71.7e+03 3.23Amager3.250.00461-0.0179  
3.03e+07https://www.airbnb.com/rooms/30283310352       12500      Apartment3799Private room1  112TRUETRUEAmager Vestmoderate12.655.61.66e+033.22Amager3.280.00459-0.0592  
3.03e+07https://www.airbnb.com/rooms/30333833199       100      Apartment2190Private room1.5112FALSETRUENrrebromoderate12.655.7796       2.9 Brokvarterer3.290.0039 -0.387   
3.03e+07https://www.airbnb.com/rooms/30336063419       10122      Apartment13100Private room1  112TRUETRUENrrebroflexible12.555.72.16e+033.34Brokvarterer3.280.004160.0595  
3.04e+07https://www.airbnb.com/rooms/30359755352       1100150      Apartment2198Private room1  233TRUETRUEFrederiksbergmoderate12.555.72.11e+033.32Brokvarterer3.380.00444-0.0589  
3.05e+07https://www.airbnb.com/rooms/30454450691       20100      Apartment2295Private room1  144FALSEFALSENrrebrostrict_14_with_grace_period12.655.72.76e+033.44Brokvarterer3.360.004110.0827  
3.07e+07https://www.airbnb.com/rooms/30674303312       20150      Apartment15799Private room1  123TRUETRUEBrnshj-Husumflexible12.555.71.25e+033.1 West3.230.0073 -0.132   
3.07e+07https://www.airbnb.com/rooms/30682423352       11750      Apartment2793Private room1  111FALSETRUEsterbrostrict_14_with_grace_period12.655.71.58e+033.2 Brokvarterer3.250.00359-0.0498  
3.07e+07https://www.airbnb.com/rooms/30704212359       100      Apartment2192Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.44e+033.16Brokvarterer3.240.00306-0.0801  
3.07e+07https://www.airbnb.com/rooms/30705669199       13089      Apartment1894Private room1.5112TRUEFALSEsterbroflexible12.655.71.18e+033.07Brokvarterer3.3 0.00459-0.223   
3.07e+07https://www.airbnb.com/rooms/30727876399       115070      Apartment6397Private room1  112TRUETRUEBispebjergflexible12.555.72.03e+033.31Nordvest3.160.005320.143   
3.07e+07https://www.airbnb.com/rooms/30731799206       12990      Apartment2299Private room1  112TRUEFALSEValbystrict_14_with_grace_period12.555.71.12e+033.05West3.210.00597-0.164   
3.08e+07https://www.airbnb.com/rooms/30805923399       1150150      Apartment1397Private room1  112FALSETRUENrrebroflexible12.555.72.35e+033.37Brokvarterer3.240.003090.128   
3.08e+07https://www.airbnb.com/rooms/30807109352       1700      Apartment2499Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.48e+033.17Brokvarterer3.320.00428-0.152   
3.08e+07https://www.airbnb.com/rooms/30831468272       100      Apartment6795Private room1.5111FALSEFALSEBispebjergflexible12.555.71.09e+033.04Nordvest3.120.00551-0.0865  
3.1e+07 https://www.airbnb.com/rooms/31018394299       2200100      Apartment1999Private room1  112TRUETRUENrrebromoderate12.655.71.4e+03 3.14Brokvarterer3.3 0.00419-0.157   
3.1e+07 https://www.airbnb.com/rooms/31047028153       11000      House4199Private room1  112TRUETRUEBrnshj-Husumflexible12.555.7712       2.85West3.190.00719-0.338   
3.11e+07https://www.airbnb.com/rooms/31057476498       1090      Apartment10100Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.62.35e+033.37Amager3.290.004930.0772  
3.11e+07https://www.airbnb.com/rooms/31118495505       100      Apartment3994Private room1  112FALSETRUEFrederiksbergflexible12.555.72.02e+033.31Brokvarterer3.240.003140.0625  
3.12e+07https://www.airbnb.com/rooms/31248084219       11000      Apartment1094Private room1  112FALSETRUEVanlseflexible12.555.7976       2.99Nordvest3.120.00453-0.132   
3.13e+07https://www.airbnb.com/rooms/31290153498       250120      Apartment1295Private room3.5113FALSETRUEIndre Byflexible12.655.72.04e+033.31Center3.540.0113 -0.23    
3.13e+07https://www.airbnb.com/rooms/31326896751       100      Apartment14100Private room1  111FALSETRUEIndre Byflexible12.655.73e+03       3.48Center3.340.004230.136   
3.14e+07https://www.airbnb.com/rooms/31400072126       100      Apartment1494Private room1  111FALSETRUEValbymoderate12.555.7504       2.7 West3.120.00535-0.42    
3.14e+07https://www.airbnb.com/rooms/31401376399       10100      Apartment4199Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.72e+03       3.3 Brokvarterer3.3 0.003570.0047  
3.14e+07https://www.airbnb.com/rooms/31410067698       12500      Apartment1599Private room1  112TRUETRUEIndre Byflexible12.655.73.04e+033.48Center3.410.004810.0769  
3.15e+07https://www.airbnb.com/rooms/31466813372       100      Other18100Private room1  112TRUETRUEValbyflexible12.555.71.49e+033.17West3.240.00875-0.0702  
3.15e+07https://www.airbnb.com/rooms/31488751598       100      Apartment1596Private room1  112FALSETRUEIndre Byflexible12.655.72.39e+033.38Center3.370.004010.00588 
3.15e+07https://www.airbnb.com/rooms/31528287392       100      Apartment1196Private room1  112TRUETRUEIndre Byflexible12.655.71.57e+033.2 Center3.4 0.00483-0.206   
3.16e+07https://www.airbnb.com/rooms/31559772352       23000      Apartment4197Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.71e+033.23Center3.420.00424-0.192   
3.16e+07https://www.airbnb.com/rooms/31579721299       2050      Apartment4192Private room1  133FALSETRUEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer3.280.00339-0.199   
3.16e+07https://www.airbnb.com/rooms/31608294498       12500      Other2399Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.62.24e+033.35Amager3.370.00828-0.018   
3.16e+07https://www.airbnb.com/rooms/31612774252       1500      Apartment1297Private room1  122TRUETRUEValbymoderate12.555.71.06e+033.02West3.190.00591-0.167   
3.16e+07https://www.airbnb.com/rooms/31649106352       1150100      Apartment17100Private room1  112TRUETRUEAmager Vestmoderate12.655.61.96e+033.29Amager3.280.004730.0151  
3.17e+07https://www.airbnb.com/rooms/31682837325       1160170      Condominium27100Private room1  012TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.14e+033.33Brokvarterer3.290.0061 0.0397  
3.17e+07https://www.airbnb.com/rooms/31690769352       200      Condominium1595Private room1  101TRUETRUENrrebroflexible12.555.71.41e+033.15Brokvarterer3.250.0058 -0.0974  
3.17e+07https://www.airbnb.com/rooms/31705502385       12000      Other2999Private room1  112TRUETRUEFrederiksbergflexible12.555.71.74e+033.24Brokvarterer3.350.00798-0.11    
3.17e+07https://www.airbnb.com/rooms/31725838651       21000      Other3392Private room1.5112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.7e+03 3.43Brokvarterer3.380.007890.0471  
3.18e+07https://www.airbnb.com/rooms/31848826452       1150150      Apartment2198Private room1  123TRUETRUENrrebrostrict_14_with_grace_period12.655.72.56e+033.41Brokvarterer3.360.004440.0518  
3.19e+07https://www.airbnb.com/rooms/31892048352       150200      Apartment2799Private room1.5111TRUETRUEBispebjergmoderate12.555.72.26e+033.35Nordvest3.180.005860.176   
3.19e+07https://www.airbnb.com/rooms/319189091e+03       2310800      Apartment1695Private room1  124FALSETRUEIndre Bymoderate12.655.74.32e+033.64Center3.470.0047 0.165   
3.19e+07https://www.airbnb.com/rooms/31944425299       1800      Apartment2198Private room1  111TRUETRUEValbymoderate12.555.71.28e+033.11West3.160.00595-0.0525  
3.2e+07 https://www.airbnb.com/rooms/32036270598       1500      Apartment1595Private room1  112FALSEFALSEAmager stmoderate12.655.72.44e+033.39Amager3.240.003920.147   
3.21e+07https://www.airbnb.com/rooms/32102028299       11000      Other3797Private room1  112TRUETRUEBispebjergflexible12.555.71.3e+03 3.11Nordvest3.230.00853-0.12    
3.21e+07https://www.airbnb.com/rooms/32121881498       100      Apartment1398Private room1  112TRUETRUEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer3.270.004130.0262  
3.21e+07https://www.airbnb.com/rooms/32130320299       11000      Apartment22100Private room1  112TRUETRUEsterbroflexible12.655.71.3e+03 3.11Brokvarterer3.280.00409-0.165   
3.22e+07https://www.airbnb.com/rooms/32234648312       100      Apartment1298Private room1  112TRUEFALSEFrederiksbergstrict_14_with_grace_period12.555.71.25e+033.1 Brokvarterer3.320.00439-0.222   
3.22e+07https://www.airbnb.com/rooms/32245469492       250200      Apartment2692Private room1  112FALSEFALSEBispebjergmoderate12.555.72.02e+033.3 Nordvest3.150.004710.156   
3.22e+07https://www.airbnb.com/rooms/32246800252       1150180      Apartment2598Private room1  112TRUETRUEBispebjergmoderate12.555.71.88e+033.27Nordvest3.190.005360.0881  
3.23e+07https://www.airbnb.com/rooms/32296918252       11000      Apartment3292Private room1  112FALSETRUEBispebjergmoderate12.555.71.11e+033.04Nordvest3.150.00472-0.105   
3.24e+07https://www.airbnb.com/rooms/32350278352       1125125      Apartment3391Private room1  133FALSETRUEsterbroflexible12.655.72.03e+033.31Brokvarterer3.270.003340.0343  
3.24e+07https://www.airbnb.com/rooms/32439197339       1125100      Apartment1198Private room1  112TRUETRUEsterbroflexible12.655.71.88e+033.27Brokvarterer3.270.004150.00161 
3.25e+07https://www.airbnb.com/rooms/32467621252       1050      Apartment1195Private room1  112TRUETRUENrrebroflexible12.655.71.21e+033.08Brokvarterer3.270.00415-0.187   
3.25e+07https://www.airbnb.com/rooms/32519952498       100      Apartment2096Private room1  112FALSETRUEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer3.240.003060.057   
3.25e+07https://www.airbnb.com/rooms/32536891452       10100      Apartment12100Private room1  122TRUETRUENrrebroflexible12.555.72.21e+033.34Brokvarterer3.280.004170.0684  
3.27e+07https://www.airbnb.com/rooms/32707835252       1120150      Apartment1392Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.73e+033.24Brokvarterer3.280.00348-0.044   
3.28e+07https://www.airbnb.com/rooms/32757110950       100      Apartment17100Private room1.5112TRUETRUEIndre Byflexible12.655.73.8e+03 3.58Center3.430.005190.145   
3.28e+07https://www.airbnb.com/rooms/32788817452       100      House2698Private room0.5122TRUETRUEFrederiksbergflexible12.555.71.81e+033.26Brokvarterer3.270.00757-0.0105  
3.28e+07https://www.airbnb.com/rooms/32823591339       10150      Apartment1396Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.96e+033.29Brokvarterer3.240.003070.0503  
3.28e+07https://www.airbnb.com/rooms/32840963299       280100      Apartment4498Private room1  112FALSETRUENrrebromoderate12.555.71.28e+033.11Brokvarterer3.280.00337-0.17    
3.29e+07https://www.airbnb.com/rooms/32914308498       11000      Apartment23100Private room1  112TRUETRUEAmager Vestflexible12.655.72.09e+033.32Amager3.250.0046 0.0697  
3.3e+07 https://www.airbnb.com/rooms/32983997399       2200150      Other1690Private room0.512FALSETRUEVanlseflexible12.555.71.8e+03 3.25Nordvest                
3.31e+07https://www.airbnb.com/rooms/33074780598       2100150      Apartment3296Private room1  114TRUETRUEsterbromoderate12.655.72.49e+033.4 Brokvarterer3.370.004660.0241  
3.32e+07https://www.airbnb.com/rooms/33156740120       1450      Apartment2396Private room1  111TRUETRUEAmager stmoderate12.655.7525       2.72Amager3.240.00478-0.516   
3.33e+07https://www.airbnb.com/rooms/33307277359       1400      Apartment3499Private room1  111TRUETRUEBispebjergmoderate12.555.71.48e+033.17Nordvest3.150.005430.0165  
3.33e+07https://www.airbnb.com/rooms/33307452326       100      Apartment10100Private room1  112TRUETRUEBispebjergflexible12.555.71.3e+03 3.12Nordvest3.160.00538-0.0435  
3.34e+07https://www.airbnb.com/rooms/33367615538       1950      Apartment2094Private room1  123FALSETRUEAmager ststrict_14_with_grace_period12.655.72.25e+033.35Amager3.290.004220.057   
3.34e+07https://www.airbnb.com/rooms/33421604651       100      Apartment1592Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.6e+03 3.42Center3.410.004250.00232 
3.34e+07https://www.airbnb.com/rooms/33437837299       100      Apartment2796Private room1  112FALSETRUEAmager stflexible12.655.71.2e+03 3.08Amager3.220.00377-0.139   
3.35e+07https://www.airbnb.com/rooms/33478438399       1250100      Apartment1193Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.25e+033.35Brokvarterer3.260.003290.0877  
3.35e+07https://www.airbnb.com/rooms/33484625751       2300250      Townhouse15100Private room1  223TRUETRUEsterbroflexible12.655.73.3e+03 3.52Brokvarterer3.370.008650.149   
3.35e+07https://www.airbnb.com/rooms/33546967498       200      Apartment2198Private room1  112TRUEFALSEValbymoderate12.555.71.99e+033.3 West3.190.005850.105   
3.36e+07https://www.airbnb.com/rooms/33570154226       1800      Apartment1791Private room1  111FALSETRUENrrebroflexible12.555.7984       2.99Brokvarterer3.2 0.00321-0.206   
3.36e+07https://www.airbnb.com/rooms/33608501412       110090      House3890Private room1  124FALSETRUEBrnshj-Husummoderate12.555.72.11e+033.32West3.250.007110.0759  
3.36e+07https://www.airbnb.com/rooms/33649503551       100      Apartment43100Private room1  112TRUETRUEVanlseflexible12.555.72.2e+03 3.34Nordvest3.160.005280.179   
3.37e+07https://www.airbnb.com/rooms/33650787372       1265300      Apartment1198Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.95e+033.47Brokvarterer3.320.0044 0.152   
3.37e+07https://www.airbnb.com/rooms/33694187398       212075      Apartment2394Private room1  112FALSETRUEsterbromoderate12.655.71.71e+033.23Brokvarterer3.270.00325-0.0336  
3.37e+07https://www.airbnb.com/rooms/33713536252       100      Apartment12100Private room1  112TRUETRUENrrebroflexible12.555.71.01e+033   Brokvarterer3.280.00417-0.272   
3.37e+07https://www.airbnb.com/rooms/33714241498       100      Apartment1597Private room1  012TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.99e+033.3 Brokvarterer3.230.004540.0726  
3.37e+07https://www.airbnb.com/rooms/33728619412       175149      Apartment2098Private room1  212TRUETRUEFrederiksbergmoderate12.555.72.32e+033.37Brokvarterer3.350.004630.0186  
3.38e+07https://www.airbnb.com/rooms/33754500498       21500      Apartment1291Private room1  112FALSEFALSEBispebjergflexible12.555.72.14e+033.33Nordvest3.120.004530.213   
3.38e+07https://www.airbnb.com/rooms/33799001378       2150150      Apartment11100Private room1  122TRUETRUEValbyflexible12.555.71.66e+033.22West3.170.005820.0524  
3.39e+07https://www.airbnb.com/rooms/33851914299       1700      Apartment10100Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.71.27e+033.1 Brokvarterer3.320.00443-0.218   
3.39e+07https://www.airbnb.com/rooms/33886110299       1100150      Apartment2896Private room1.5112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.9e+03 3.28Brokvarterer3.350.00468-0.0675  
3.39e+07https://www.airbnb.com/rooms/33901941399       1100200      Apartment1699Private room1  111FALSETRUEsterbroflexible12.655.72.5e+03 3.4 Brokvarterer3.210.003260.188   
3.39e+07https://www.airbnb.com/rooms/33911511299       150100      Apartment2298Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.61.65e+033.22Brokvarterer3.3 0.00415-0.0851  
3.4e+07 https://www.airbnb.com/rooms/34012280491       1130170      Apartment1096Private room1  112TRUETRUEVanlsestrict_14_with_grace_period12.555.72.77e+033.44Nordvest3.2 0.005570.244   
3.4e+07 https://www.airbnb.com/rooms/34021440398       20100      Apartment2798Private room1  104TRUETRUEFrederiksbergflexible12.555.71.59e+033.2 Brokvarterer3.350.00464-0.145   
3.4e+07 https://www.airbnb.com/rooms/34037421352       1100100      House1694Private room1  112FALSETRUEValbymoderate12.555.71.91e+033.28West3.180.006810.103   
3.41e+07https://www.airbnb.com/rooms/34055711272       100      Apartment2491Private room1  112FALSETRUENrrebromoderate12.655.71.09e+033.04Brokvarterer3.260.00329-0.227   
3.41e+07https://www.airbnb.com/rooms/34133577797       127960      Apartment4691Private room1  134FALSETRUEIndre Byflexible12.655.73.71e+033.57Center3.440.004590.126   
3.41e+07https://www.airbnb.com/rooms/34149047285       100      Apartment2890Private room1  112FALSETRUENrrebroflexible12.655.71.14e+033.06Brokvarterer3.240.00312-0.179   
3.43e+07https://www.airbnb.com/rooms/34250490498       280150      Apartment2298Private room1  112TRUETRUEAmager Vestmoderate12.655.62.07e+033.32Amager3.270.004670.0415  
3.43e+07https://www.airbnb.com/rooms/34278670292       16060      Other52100Private room1  112TRUETRUEVanlseflexible12.555.71.47e+033.17Nordvest3.240.00855-0.0726  
3.43e+07https://www.airbnb.com/rooms/34281307299       1035      Apartment16100Private room1  112TRUETRUENrrebromoderate12.555.71.34e+033.13Brokvarterer3.3 0.00423-0.177   
3.44e+07https://www.airbnb.com/rooms/34393437597       110050      Apartment1499Private room1  122TRUETRUEIndre Byflexible12.655.72.69e+033.43Center3.410.004820.0234  
3.44e+07https://www.airbnb.com/rooms/34426647498       100      Townhouse2698Private room1  112TRUETRUEAmager stflexible12.655.61.99e+033.3 Amager3.260.008620.0381  
3.44e+07https://www.airbnb.com/rooms/34440923551       1330      Other1895Private room1  112TRUETRUENrrebromoderate12.655.72.24e+033.35Brokvarterer3.370.00809-0.0207  
3.45e+07https://www.airbnb.com/rooms/34502695498       350100      Other2697Private room1  113TRUETRUEValbyflexible12.555.72.04e+033.31West3.280.008730.0339  
3.45e+07https://www.airbnb.com/rooms/34525854471       114050      Apartment1791Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.22e+033.35Center3.410.00425-0.0652  
3.46e+07https://www.airbnb.com/rooms/34582204485       100      House2795Private room1  012FALSEFALSEIndre Byflexible12.655.71.94e+033.29Center3.350.00736-0.0593  
3.46e+07https://www.airbnb.com/rooms/34626214598       1450100      Apartment2497Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.24e+033.51Center3.420.004230.0894  
3.47e+07https://www.airbnb.com/rooms/34679434372       1500      Apartment2396Private room1  112TRUETRUEBrnshj-Husumstrict_14_with_grace_period12.555.71.54e+033.19West3.210.00595-0.0238  
3.47e+07https://www.airbnb.com/rooms/34681260392       100      Other4692Private room1  244FALSETRUEAmager stflexible12.655.61.57e+033.2 Amager3.410.00792-0.21    
3.47e+07https://www.airbnb.com/rooms/34695860286       160150      Other3598Private room1  022TRUETRUEBrnshj-Husumflexible12.555.71.8e+03 3.26West3.2 0.0089 0.0586  
3.47e+07https://www.airbnb.com/rooms/34696236412       100      Apartment8098Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.65e+033.22Brokvarterer3.280.00433-0.0586  
3.47e+07https://www.airbnb.com/rooms/34697921392       100      Apartment2093Private room1  112FALSETRUEAmager stflexible12.655.61.57e+033.2 Amager3.210.00374-0.0164  
3.47e+07https://www.airbnb.com/rooms/34713420498       1400      Apartment6097Private room1  112TRUETRUEFrederiksbergmoderate12.655.72.03e+033.31Brokvarterer3.310.004050.00119 
3.48e+07https://www.airbnb.com/rooms/34772721399       1050      Apartment1490Private room1  012FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.8e+03 3.25Brokvarterer3.210.003880.0395  
3.48e+07https://www.airbnb.com/rooms/34809039398       1100200      Apartment1799Private room1  112TRUETRUENrrebroflexible12.555.72.49e+033.4 Brokvarterer3.280.004110.121   
3.48e+07https://www.airbnb.com/rooms/34835494299       150100      Apartment2097Private room1  112FALSETRUENrrebroflexible12.655.71.65e+033.22Brokvarterer3.240.00308-0.0272  
3.49e+07https://www.airbnb.com/rooms/34856242498       100      Apartment2098Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.99e+033.3 Brokvarterer3.320.0043 -0.0207  
3.49e+07https://www.airbnb.com/rooms/34888013299       100      Apartment1591Private room1  111FALSETRUENrrebroflexible12.655.71.2e+03 3.08Brokvarterer3.2 0.00321-0.121   
3.49e+07https://www.airbnb.com/rooms/34920043392       19999      Apartment4093Private room1  123FALSETRUEAmager stflexible12.655.72.06e+033.31Amager3.250.004  0.0635  
3.49e+07https://www.airbnb.com/rooms/34937541597       100      House1798Private room1  122TRUETRUEAmager stflexible12.655.72.39e+033.38Amager3.270.006880.112   
3.5e+07 https://www.airbnb.com/rooms/34971525319       150200      Other2197Private room1  112TRUETRUEVanlseflexible12.555.72.13e+033.33Nordvest3.230.008580.0974  
3.5e+07 https://www.airbnb.com/rooms/35032262352       1150300      Apartment1694Private room1  123FALSETRUENrrebroflexible12.555.72.76e+033.44Brokvarterer3.270.003290.166   
3.5e+07 https://www.airbnb.com/rooms/35038891751       12500      Apartment10100Private room1  112FALSETRUEAmager stflexible12.655.73.25e+033.51Amager3.220.003870.293   
3.51e+07https://www.airbnb.com/rooms/35071143571       11500      Apartment2997Private room1  012TRUETRUEIndre Bymoderate12.655.72.43e+033.39Center3.390.00513-0.00112 
3.52e+07https://www.airbnb.com/rooms/35215509551       11500      Apartment15100Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.35e+033.37Amager3.3 0.004880.0767  
3.52e+07https://www.airbnb.com/rooms/35239023451       100      Apartment1096Private room1  112TRUEFALSEFrederiksbergflexible12.655.71.8e+03 3.26Brokvarterer3.270.00416-0.0137  
3.53e+07https://www.airbnb.com/rooms/35297865551       20100      Apartment3894Private room1  113FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.2e+03 3.34Brokvarterer3.320.003650.0189  
3.53e+07https://www.airbnb.com/rooms/35300458352       1350      Apartment1999Private room1  112TRUETRUEAmager Vestflexible12.655.61.44e+033.16Amager3.250.00461-0.0896  
3.55e+07https://www.airbnb.com/rooms/35540010246       19535      Apartment1696Private room1  112TRUETRUEVanlsemoderate12.555.71.22e+033.09Nordvest3.180.00541-0.0955  
3.56e+07https://www.airbnb.com/rooms/35578830451       100      Apartment3792Private room1  112FALSETRUEAmager stflexible12.655.71.8e+03 3.26Amager3.210.003820.0429  
3.56e+07https://www.airbnb.com/rooms/356044131.5e+03 100      Apartment1796Private room1.5223FALSETRUEIndre Bymoderate12.655.76e+03       3.78Center3.510.004640.27    
3.57e+07https://www.airbnb.com/rooms/35664005478       12500      Apartment2395Private room1  123FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.16e+033.33Center3.450.00433-0.12    
3.57e+07https://www.airbnb.com/rooms/35693463325       100      Apartment3491Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.3e+03 3.11Brokvarterer3.240.00313-0.124   
3.57e+07https://www.airbnb.com/rooms/35699272850       22000      Apartment5398Private room1  012TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.6e+03 3.56Center3.410.005080.145   
3.57e+07https://www.airbnb.com/rooms/35722788398       11750      Apartment10100Private room1  112FALSEFALSENrrebroflexible12.555.71.77e+033.25Brokvarterer3.250.0032 0.00142 
3.57e+07https://www.airbnb.com/rooms/35728133219       1350      Apartment3091Private room1  111FALSETRUEAmager Vestmoderate12.655.7911       2.96Amager3.2 0.00408-0.242   
3.58e+07https://www.airbnb.com/rooms/35765569485       198210      Apartment3496Private room1  111TRUETRUENrrebroflexible12.655.72.88e+033.46Brokvarterer3.240.004110.221   
3.58e+07https://www.airbnb.com/rooms/35767935498       20200      Apartment2594Private room1  114FALSETRUEsterbrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer3.360.0041 -0.0587  
3.58e+07https://www.airbnb.com/rooms/35780038451       1050      Apartment2598Private room1  111TRUEFALSENrrebroflexible12.655.72e+03       3.3 Brokvarterer3.240.004150.0627  
3.58e+07https://www.airbnb.com/rooms/35786920478       100      Apartment2295Private room1  112FALSETRUEFrederiksbergflexible12.555.71.91e+033.28Brokvarterer3.240.003050.0402  
3.58e+07https://www.airbnb.com/rooms/35839191392       1100100      Apartment1997Private room1  112TRUETRUEIndre Byflexible12.655.72.07e+033.32Center3.4 0.00476-0.0887  
3.59e+07https://www.airbnb.com/rooms/35868440246       1100100      Apartment1693Private room1  111FALSETRUEFrederiksbergflexible12.555.71.48e+033.17Brokvarterer3.2 0.00318-0.0303  
3.59e+07https://www.airbnb.com/rooms/35930602498       1150175      Apartment2099Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.84e+033.45Brokvarterer3.3 0.004180.151   
3.59e+07https://www.airbnb.com/rooms/35937731451       100      Apartment1296Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.8e+03 3.26Brokvarterer3.240.003070.0153  
3.6e+07 https://www.airbnb.com/rooms/35967671598       2200300      Apartment2296Private room1  123TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.59e+033.41Brokvarterer3.330.004320.0788  
3.6e+07 https://www.airbnb.com/rooms/35992981319       1500      Apartment1297Private room1  112TRUETRUEValbyflexible12.555.71.33e+033.12West3.160.00578-0.0419  
3.6e+07 https://www.airbnb.com/rooms/36011736392       1250150      House1599Private room1  112FALSEFALSEAmager ststrict_14_with_grace_period12.655.72.42e+033.38Amager3.280.006590.1     
3.6e+07 https://www.airbnb.com/rooms/36013912950       100      Apartment3099Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.8e+03 3.58Center3.450.004810.125   
3.6e+07 https://www.airbnb.com/rooms/36013985398       11000      Apartment2097Private room1  112FALSETRUEAmager Vestflexible12.655.61.69e+033.23Amager3.220.003770.0114  
3.6e+07 https://www.airbnb.com/rooms/36029772392       1250150      House1898Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.62.42e+033.38Amager3.280.006570.101   
3.61e+07https://www.airbnb.com/rooms/36058472398       1330      Apartment1596Private room1  132TRUETRUEAmager stflexible12.655.71.62e+033.21Amager3.240.00462-0.0334  
3.61e+07https://www.airbnb.com/rooms/36124619398       100      Apartment1593Private room1  112FALSETRUEBispebjergflexible12.555.71.59e+033.2 Nordvest3.120.004520.0809  
3.61e+07https://www.airbnb.com/rooms/36128301698       11000      Apartment1696Private room1  112TRUETRUEIndre Byflexible12.655.72.89e+033.46Center3.4 0.004780.0587  
3.62e+07https://www.airbnb.com/rooms/36163852286       1250100      Apartment1292Private room1  134FALSEFALSEVesterbro-Kongens Enghavemoderate12.555.61.79e+033.25Brokvarterer3.330.00402-0.0806  
3.62e+07https://www.airbnb.com/rooms/36221410319       100      Apartment1894Private room1.5344FALSETRUEFrederiksbergflexible12.555.71.28e+033.11Brokvarterer3.430.00439-0.323   
3.62e+07https://www.airbnb.com/rooms/36221729299       1500      Apartment11100Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.25e+033.1 Brokvarterer3.3 0.00429-0.207   
3.62e+07https://www.airbnb.com/rooms/36226802498       250200      Apartment1698Private room1  112TRUETRUEValbymoderate12.555.72.04e+033.31West3.190.005880.117   
3.63e+07https://www.airbnb.com/rooms/36269850797       20100      Apartment1597Private room1  112FALSETRUEIndre Bymoderate12.655.73.19e+033.5 Center3.4 0.004180.102   
3.63e+07https://www.airbnb.com/rooms/36278095299       1100100      Apartment10100Private room1  112TRUETRUEVanlsemoderate12.555.71.7e+03 3.23Nordvest3.190.005480.0437  
3.63e+07https://www.airbnb.com/rooms/36284753698       11500      Apartment12100Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.94e+033.47Brokvarterer3.3 0.004640.166   
3.63e+07https://www.airbnb.com/rooms/36297264325       100      Apartment1994Private room1  111FALSEFALSEBispebjergflexible12.555.71.3e+03 3.11Nordvest3.090.004630.0268  
3.63e+07https://www.airbnb.com/rooms/36332656432       1100100      Apartment19100Private room1  112TRUETRUEAmager stflexible12.655.72.23e+033.35Amager3.250.004630.0978  
3.64e+07https://www.airbnb.com/rooms/36436230399       100      Apartment2695Private room1  111FALSETRUEsterbromoderate12.655.71.6e+03 3.2 Brokvarterer3.230.00338-0.03    
3.65e+07https://www.airbnb.com/rooms/36512357398       1200150      Townhouse1096Private room1  112TRUEFALSEAmager Veststrict_14_with_grace_period12.655.62.39e+033.38Amager3.3 0.0088 0.0772  
3.66e+07https://www.airbnb.com/rooms/36593975498       11490      Apartment3791Private room1  133FALSETRUENrrebrostrict_14_with_grace_period12.655.72.14e+033.33Brokvarterer3.320.003660.0104  
3.67e+07https://www.airbnb.com/rooms/36664680438       110090      Apartment27100Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.21e+033.34Brokvarterer3.310.004130.0397  
3.68e+07https://www.airbnb.com/rooms/36787685219       10100      Apartment2093Private room1  121FALSETRUENrrebrostrict_14_with_grace_period12.655.71.28e+033.11Brokvarterer3.250.00359-0.142   
3.68e+07https://www.airbnb.com/rooms/36796314419       10100      Apartment4299Private room1  112TRUETRUEsterbromoderate12.655.72.08e+033.32Brokvarterer3.310.004050.0109  
3.69e+07https://www.airbnb.com/rooms/36855658498       2100175      Apartment1497Private room1  112FALSETRUEAmager stmoderate12.655.72.09e+033.32Amager3.240.003940.0777  
3.69e+07https://www.airbnb.com/rooms/36871686299       10100      Apartment3792Private room1  121FALSETRUENrrebrostrict_14_with_grace_period12.655.71.6e+03 3.2 Brokvarterer3.250.00363-0.0467  
3.69e+07https://www.airbnb.com/rooms/36899429299       100      Other2096Private room1  111TRUETRUEVanlseflexible12.555.71.2e+03 3.08Nordvest3.190.00868-0.115   
3.7e+07 https://www.airbnb.com/rooms/36954363498       12000      Apartment1497Private room1  122FALSETRUEAmager Veststrict_14_with_grace_period12.655.72.19e+033.34Amager3.260.004120.0792  
3.7e+07 https://www.airbnb.com/rooms/36999393372       1500      Apartment1599Private room1  112TRUETRUEFrederiksbergflexible12.555.71.54e+033.19Brokvarterer3.270.00413-0.0878  
3.7e+07 https://www.airbnb.com/rooms/37003888597       1060      Apartment1192Private room1.5112FALSEFALSEFrederiksbergflexible12.555.72.63e+033.42Brokvarterer3.260.0037 0.158   
3.7e+07 https://www.airbnb.com/rooms/37040196399       100      Apartment16100Private room1  112FALSETRUEVanlseflexible12.555.71.6e+03 3.2 Nordvest3.130.004660.0727  
3.71e+07https://www.airbnb.com/rooms/37112170478       100      House1496Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.61.91e+033.28Brokvarterer3.290.00694-0.00811 
3.71e+07https://www.airbnb.com/rooms/37142589252       2300100      Apartment13100Private room1  112TRUETRUENrrebroflexible12.655.71.31e+033.12Brokvarterer3.280.00416-0.159   
3.72e+07https://www.airbnb.com/rooms/37163387485       110075      Other2896Private room1  012FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.72.34e+033.37West3.210.0088 0.159   
3.73e+07https://www.airbnb.com/rooms/37288225418       200      Apartment3399Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.71.67e+033.22Brokvarterer3.3 0.00408-0.0815  
3.74e+07https://www.airbnb.com/rooms/37378110213       1250100      Apartment2497Private room1.5112TRUEFALSEIndre Bystrict_14_with_grace_period12.655.71.5e+03 3.18Center3.480.00521-0.301   
3.74e+07https://www.airbnb.com/rooms/37394076478       12000      Apartment25100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.11e+033.32Brokvarterer3.280.003350.0494  
3.75e+07https://www.airbnb.com/rooms/37477332578       12000      Apartment2498Private room1  112TRUETRUEIndre Bymoderate12.655.72.51e+033.4 Center3.430.0048 -0.0333  
3.75e+07https://www.airbnb.com/rooms/37533392312       20250      Apartment19100Private room1  102FALSETRUEValbymoderate12.555.71.25e+033.1 West3.170.00532-0.0709  
3.76e+07https://www.airbnb.com/rooms/37576720392       100      Apartment2497Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.57e+033.2 Brokvarterer3.240.00309-0.0489  
3.76e+07https://www.airbnb.com/rooms/37583521750       12500      Apartment1494Private room1  112FALSETRUENrrebroflexible12.655.73.25e+033.51Brokvarterer3.240.003050.273   
3.76e+07https://www.airbnb.com/rooms/376122121e+03       20200      Apartment3799Private room1  224TRUETRUEVesterbro-Kongens Enghaveflexible12.655.74.01e+033.6 Brokvarterer3.4 0.0044 0.208   
3.76e+07https://www.airbnb.com/rooms/37612308498       100      House5499Private room1  112TRUETRUEAmager Vestflexible12.655.61.99e+033.3 Amager3.270.006840.0256  
3.77e+07https://www.airbnb.com/rooms/37700008358       11000      Condominium1194Private room1.5112FALSETRUEAmager Vestflexible12.655.61.53e+033.19Amager3.250.00578-0.0652  
3.77e+07https://www.airbnb.com/rooms/37741274651       100      Apartment12100Private room1  102TRUETRUEIndre Bymoderate12.655.72.6e+03 3.42Center3.430.00495-0.0183  
3.77e+07https://www.airbnb.com/rooms/37747206750       13000      Apartment22100Private room1  112TRUETRUEIndre Bymoderate12.655.73.3e+03 3.52Center3.440.004840.0829  
3.78e+07https://www.airbnb.com/rooms/37777669498       100      Apartment2394Private room1  112FALSEFALSEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer3.240.003050.0591  
3.78e+07https://www.airbnb.com/rooms/37787726246       1439250      Apartment1094Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.62.42e+033.38Brokvarterer3.260.003290.119   
3.79e+07https://www.airbnb.com/rooms/37858655698       1500      Apartment10100Private room1.5112TRUETRUEIndre Byflexible12.655.72.84e+033.45Center3.430.005250.0204  
3.79e+07https://www.airbnb.com/rooms/37869162292       2149149      Apartment5793Private room1  112FALSETRUENrrebromoderate12.655.71.32e+033.12Brokvarterer3.270.00347-0.152   
3.79e+07https://www.airbnb.com/rooms/37903754452       110040      Apartment1398Private room1  112FALSETRUEAmager stflexible12.655.72.07e+033.32Amager3.220.0038 0.0985  
3.8e+07 https://www.airbnb.com/rooms/37960442498       12500      Apartment14100Private room1  112TRUETRUEAmager Vestmoderate12.655.72.24e+033.35Amager3.280.004750.0744  
3.8e+07 https://www.airbnb.com/rooms/38016977551       100      Apartment20100Private room1  002TRUETRUEsterbromoderate12.655.72.2e+03 3.34Brokvarterer3.260.004630.0848  
3.8e+07 https://www.airbnb.com/rooms/38018437299       100      Apartment1193Private room1  112FALSETRUEsterbroflexible12.655.71.2e+03 3.08Brokvarterer3.240.00306-0.159   
3.8e+07 https://www.airbnb.com/rooms/38031871378       1390      Apartment2494Private room1  112FALSETRUEAmager Vestflexible12.655.61.55e+033.19Amager3.210.00374-0.0231  
3.8e+07 https://www.airbnb.com/rooms/38031878352       17550      House2498Private room1.5112TRUETRUEBispebjergflexible12.555.71.68e+033.23Nordvest3.2 0.007270.022   
3.82e+07https://www.airbnb.com/rooms/38189065299       2100185      Apartment1892Private room1  112FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.3e+03 3.11Nordvest3.170.00485-0.0533  
3.82e+07https://www.airbnb.com/rooms/38245859226       137149      Apartment2695Private room1  112TRUETRUEFrederiksbergflexible12.555.71.54e+033.19Brokvarterer3.270.00403-0.0847  
3.83e+07https://www.airbnb.com/rooms/38281615597       100      Apartment2999Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.39e+033.38Brokvarterer3.320.004240.0552  
3.83e+07https://www.airbnb.com/rooms/38337710398       1150100      Other1297Private room1  122FALSETRUEsterbrostrict_14_with_grace_period12.655.72.14e+033.33Brokvarterer3.360.00782-0.0305  
3.84e+07https://www.airbnb.com/rooms/383535711e+03       11000      Apartment1096Private room1.5112TRUETRUENrrebroflexible12.655.74.11e+033.61Brokvarterer3.3 0.004630.317   
3.84e+07https://www.airbnb.com/rooms/38428971252       1400      Apartment1198Private room1  012TRUEFALSEValbymoderate12.555.71.05e+033.02West3.150.00621-0.127   
3.84e+07https://www.airbnb.com/rooms/38445233252       11500      Apartment19100Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.16e+033.06Brokvarterer3.3 0.0042 -0.24    
3.85e+07https://www.airbnb.com/rooms/38515128498       11990      Apartment1597Private room1  112TRUEFALSEVanlsemoderate12.555.72.19e+033.34Nordvest3.180.005410.158   
3.86e+07https://www.airbnb.com/rooms/38578757452       100      Apartment2395Private room1  112FALSETRUEIndre Byflexible12.655.71.81e+033.26Center3.370.00398-0.116   
3.87e+07https://www.airbnb.com/rooms/386790921.13e+03100      Apartment1698Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.74.52e+033.65Brokvarterer3.270.004110.381   
3.87e+07https://www.airbnb.com/rooms/38690307259       1050      House1496Private room2  122TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.24e+033.09Brokvarterer3.390.00761-0.296   
3.88e+07https://www.airbnb.com/rooms/38844661352       100      Apartment2095Private room1  111FALSETRUEFrederiksbergflexible12.555.71.41e+033.15Brokvarterer3.210.00318-0.0564  
3.89e+07https://www.airbnb.com/rooms/38893757498       12000      Apartment1498Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.72.19e+033.34Amager3.260.004150.0779  
3.9e+07 https://www.airbnb.com/rooms/38951625452       2200100      Apartment13100Private room1  112FALSETRUENrrebromoderate12.655.72.01e+033.3 Brokvarterer3.270.003380.0295  
3.9e+07 https://www.airbnb.com/rooms/38997727803       100      Condominium1697Private room2  012TRUEFALSEIndre Bymoderate12.655.73.21e+033.51Center3.450.007820.056   
3.9e+07 https://www.airbnb.com/rooms/39020206399       2150100      Apartment2098Private room1  103TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.75e+033.24Brokvarterer3.340.00434-0.0951  
3.9e+07 https://www.airbnb.com/rooms/39037766319       1500      Condominium1098Private room1  112TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.33e+033.12Brokvarterer3.330.00589-0.208   
3.9e+07 https://www.airbnb.com/rooms/39048376452       20250      Apartment26100Private room1  112TRUETRUEValbymoderate12.555.71.81e+033.26West3.2 0.005850.0595  
3.91e+07https://www.airbnb.com/rooms/39097184419       12500      Other1094Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.93e+033.28Brokvarterer3.390.00821-0.102   
3.91e+07https://www.airbnb.com/rooms/39144398272       120075      Apartment1198Private room1  112TRUETRUEBispebjergflexible12.555.71.59e+033.2 Nordvest3.160.005340.0445  
3.92e+07https://www.airbnb.com/rooms/39183821352       12000      Other1597Private room1  122TRUETRUENrrebrostrict_14_with_grace_period12.655.71.61e+033.21Brokvarterer3.390.00816-0.185   
3.92e+07https://www.airbnb.com/rooms/39219620252       210050      Apartment1096Private room1  223TRUETRUEValbystrict_14_with_grace_period12.555.61.11e+033.04West3.290.00622-0.245   
3.93e+07https://www.airbnb.com/rooms/39313935697       11500      Apartment2799Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.94e+033.47Brokvarterer3.3 0.004120.164   
3.95e+07https://www.airbnb.com/rooms/39497945299       10200      Apartment2399Private room1  112TRUETRUENrrebroflexible12.555.72e+03       3.3 Brokvarterer3.280.004060.024   
3.95e+07https://www.airbnb.com/rooms/39504833299       1150100      Other1892Private room1  103FALSETRUEsterbrostrict_14_with_grace_period12.655.71.75e+033.24Brokvarterer3.390.00783-0.15    
3.95e+07https://www.airbnb.com/rooms/39517646299       100      Apartment10100Private room1  112TRUETRUEAmager Vestflexible12.655.61.2e+03 3.08Amager3.250.0047 -0.171   
3.96e+07https://www.airbnb.com/rooms/39644559299       2375125      House1397Private room1  124TRUETRUEFrederiksbergmoderate12.555.71.57e+033.2 Brokvarterer3.390.00729-0.193   
3.97e+07https://www.airbnb.com/rooms/397193531e+03       2400200      Apartment1297Private room1  122TRUETRUEIndre Bystrict_14_with_grace_period12.655.74.41e+033.64Center3.450.004980.196   
3.98e+07https://www.airbnb.com/rooms/39773379199       170100      Apartment2199Private room1  112TRUETRUEAmager stmoderate12.655.71.27e+033.1 Amager3.280.00468-0.174   
3.99e+07https://www.airbnb.com/rooms/39885777212       17550      Apartment1298Private room1  112FALSETRUEsterbroflexible12.655.71.12e+033.05Brokvarterer3.240.00312-0.193   
4e+07       https://www.airbnb.com/rooms/39989250352       237575      House1998Private room1  123TRUETRUEFrederiksbergflexible12.555.71.78e+033.25Brokvarterer3.330.00698-0.0778  
4e+07       https://www.airbnb.com/rooms/40032118312       17585      Apartment1497Private room1  112TRUETRUEBispebjergflexible12.555.71.66e+033.22Nordvest3.160.005310.0654  
4.01e+07https://www.airbnb.com/rooms/40081875252       16080      Apartment3697Private room1  111TRUETRUENrrebromoderate12.655.71.39e+033.14Brokvarterer3.270.00418-0.124   
4.02e+07https://www.airbnb.com/rooms/40247003398       280150      Apartment3595Private room1  122TRUETRUENrrebromoderate12.655.71.67e+033.22Brokvarterer3.3 0.00407-0.0766  
4.02e+07https://www.airbnb.com/rooms/40247677597       280150      Apartment3197Private room1  112TRUETRUENrrebromoderate12.655.72.47e+033.39Brokvarterer3.3 0.004080.0906  
4.03e+07https://www.airbnb.com/rooms/40338902299       13000      Apartment1293Private room1  112FALSETRUEAmager stmoderate12.655.61.5e+03 3.17Amager3.240.00393-0.0623  
4.05e+07https://www.airbnb.com/rooms/40522266252       13000      Apartment1090Private room1  112FALSETRUEAmager stflexible12.655.61.31e+033.12Amager3.210.00378-0.0895  
4.05e+07https://www.airbnb.com/rooms/40527430299       250100      Townhouse1398Private room1  123TRUETRUEAmager Vestmoderate12.655.61.25e+033.1 Amager3.320.00875-0.226   
4.07e+07https://www.airbnb.com/rooms/40715663352       11500      Other2096Private room2  113TRUETRUEsterbrostrict_14_with_grace_period12.655.71.56e+033.19Brokvarterer3.480.00886-0.287   
4.12e+07https://www.airbnb.com/rooms/41161863352       368100      Apartment1090Private room0.5134FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.48e+033.17Amager3.3 0.00532-0.128   
4.13e+07https://www.airbnb.com/rooms/41260940551       100      Apartment1394Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.2e+03 3.34Brokvarterer3.270.003270.0778  
4.18e+07https://www.airbnb.com/rooms/41848710252       100      Apartment1295Private room1  111FALSETRUENrrebromoderate12.655.71.01e+033   Brokvarterer3.230.0034 -0.227   
4.19e+07https://www.airbnb.com/rooms/41850840226       135170      Other2198Private room1  113TRUETRUEAmager Veststrict_14_with_grace_period12.655.61.62e+033.21Amager3.4 0.00831-0.194   
# Convert prices back from log
model_predictions <- model_predictions_log  %>%
  mutate(lower = .fitted - 1.96 * .se.fit, 
         upper = .fitted + 1.96 * .se.fit) %>%
  mutate(fitted_price_final = 10^(.fitted),
         upper_final = 10^(upper),
         lower_final = 10^(lower))

model_predictions
idlisting_urlpriceguests_includedcleaning_feeextra_peopleprop_type_simplifiednumber_of_reviewsreview_scores_ratingroom_typebathroomsbedroomsbedsaccommodateshost_is_superhostis_location_exactneighbourhood_cleansedcancellation_policylongitudelatitudeprice_4_nightsprice_4_nights_logneighbourhood_simplified.fitted.se.fit.residlowerupperfitted_price_finalupper_finallower_final
6.98e+03https://www.airbnb.com/rooms/6983365       13366      Apartment16896Private room1  112FALSETRUENrrebromoderate12.555.71.76e+033.24Brokvarterer3.290.00628-0.0496  3.283.311.97e+032.03e+031.91e+03
4.91e+04https://www.airbnb.com/rooms/49122352       10210      Apartment18492Private room1  102FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.25e+033.35Center3.440.00705-0.0903  3.433.462.77e+032.86e+032.68e+03
6.59e+04https://www.airbnb.com/rooms/65902452       10100      Condominium9294Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.72.21e+033.34Brokvarterer3.310.005740.034   3.3 3.322.04e+032.1e+03 1.99e+03
1.43e+05https://www.airbnb.com/rooms/142599498       20100      Condominium95100Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer3.3 0.00591-0.00281 3.293.312e+03       2.06e+031.95e+03
1.77e+05https://www.airbnb.com/rooms/1769631e+03       2225300      Apartment36493Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.74.24e+033.63Brokvarterer3.3 0.0133 0.33    3.273.321.98e+032.1e+03 1.87e+03
1.86e+05https://www.airbnb.com/rooms/186454458       10100      Apartment18495Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.23e+033.35Brokvarterer3.310.006650.0406  3.3 3.322.03e+032.09e+031.97e+03
2.4e+05 https://www.airbnb.com/rooms/239705359       10250      Apartment15796Private room1  102TRUEFALSENrrebroflexible12.655.72.44e+033.39Brokvarterer3.3 0.005840.0916  3.283.311.97e+032.03e+031.92e+03
2.4e+05 https://www.airbnb.com/rooms/239818432       1066      Apartment5196Private room1  112FALSETRUEAmager Vestmoderate12.655.71.99e+033.3 Amager3.250.004050.0514  3.243.261.77e+031.8e+03 1.74e+03
2.58e+05https://www.airbnb.com/rooms/258430252       10100      Condominium27695Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.555.61.41e+033.15Brokvarterer3.260.0108 -0.112   3.243.281.82e+031.92e+031.74e+03
3.18e+05https://www.airbnb.com/rooms/318437379       100      Apartment6397Private room1  111TRUETRUENrrebroflexible12.655.71.52e+033.18Brokvarterer3.240.00418-0.0637  3.243.251.76e+031.79e+031.72e+03
3.27e+05https://www.airbnb.com/rooms/327286664       1166166      Apartment3897Private room0.5122FALSETRUEIndre Byflexible12.655.73.49e+033.54Center3.350.004660.191   3.343.362.25e+032.29e+032.2e+03 
3.31e+05https://www.airbnb.com/rooms/330915359       11000      Apartment63792Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.54e+033.19Brokvarterer3.340.0226 -0.149   3.293.382.17e+032.4e+03 1.96e+03
3.39e+05https://www.airbnb.com/rooms/338992399       11000      Apartment40192Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.7e+03 3.23Brokvarterer3.3 0.014  -0.066   3.273.321.97e+032.1e+03 1.85e+03
3.39e+05https://www.airbnb.com/rooms/339139385       2100150      House11099Private room1  122TRUETRUEAmager Vestmoderate12.655.61.64e+033.21Amager3.310.00722-0.0953  3.3 3.322.04e+032.11e+031.98e+03
3.45e+05https://www.airbnb.com/rooms/345187485       166173      Apartment22493Private room1.5113FALSETRUEAmager stmoderate12.655.72.7e+03 3.43Amager3.340.008720.0951  3.323.352.17e+032.25e+032.08e+03
3.61e+05https://www.airbnb.com/rooms/360501651       12000      Apartment4798Private room1  112FALSETRUENrrebromoderate12.555.72.8e+03 3.45Brokvarterer3.280.0034 0.171   3.273.281.89e+031.92e+031.86e+03
3.64e+05https://www.airbnb.com/rooms/363722478       1200200      Apartment8291Private room1.5122FALSETRUEFrederiksbergmoderate12.655.72.91e+033.46Brokvarterer3.3 0.004430.164   3.293.311.99e+032.03e+031.95e+03
4.57e+05https://www.airbnb.com/rooms/456771598       100      Apartment2199Private room1  124TRUETRUEsterbrostrict_14_with_grace_period12.655.72.39e+033.38Brokvarterer3.390.00484-0.0145  3.383.4 2.47e+032.53e+032.42e+03
4.57e+05https://www.airbnb.com/rooms/456776405       100      Apartment23198Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.71.62e+033.21Brokvarterer3.360.00797-0.146   3.343.372.27e+032.35e+032.19e+03
5.15e+05https://www.airbnb.com/rooms/515344438       10100      Apartment9099Private room1  112TRUETRUENrrebromoderate12.655.72.15e+033.33Brokvarterer3.310.004330.0184  3.313.322.06e+032.1e+03 2.02e+03
5.22e+05https://www.airbnb.com/rooms/521856392       1100225      Apartment25397Private room1  102TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.57e+033.41Brokvarterer3.360.008670.0512  3.343.382.28e+032.37e+032.19e+03
5.54e+05https://www.airbnb.com/rooms/553888352       2100100      Apartment6794Private room1  112TRUETRUENrrebromoderate12.555.71.51e+033.18Brokvarterer3.3 0.00411-0.126   3.3 3.312.01e+032.05e+031.98e+03
5.6e+05 https://www.airbnb.com/rooms/559944897       100      Apartment5395Private room  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.73.59e+033.55Brokvarterer                                           
5.66e+05https://www.airbnb.com/rooms/566317392       1250200      Apartment8390Private room1  011FALSETRUENrrebromoderate12.655.72.62e+033.42Brokvarterer3.190.004160.227   3.183.2 1.55e+031.58e+031.52e+03
5.99e+05https://www.airbnb.com/rooms/5989162e+03       1200200      Condominium10991Private room1.5132FALSETRUEFrederiksbergmoderate12.655.79e+03       3.95Brokvarterer3.320.006280.637   3.3 3.332.07e+032.13e+032.02e+03
6.05e+05https://www.airbnb.com/rooms/605386452       220050      Apartment7296Private room1  113TRUETRUENrrebrostrict_14_with_grace_period12.655.72.01e+033.3 Brokvarterer3.360.00437-0.0594  3.353.372.3e+03 2.35e+032.26e+03
6.23e+05https://www.airbnb.com/rooms/623404399       1100199      Apartment11498Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.49e+033.4 Brokvarterer3.320.004720.0793  3.313.332.08e+032.12e+032.03e+03
6.31e+05https://www.airbnb.com/rooms/630572452       100      Apartment5399Private room1  111FALSETRUEAmager ststrict_14_with_grace_period12.655.71.81e+033.26Amager3.230.004440.0222  3.233.241.72e+031.75e+031.68e+03
6.45e+05https://www.airbnb.com/rooms/645357751       2400250      Apartment10896Private room1  222TRUETRUEIndre Byflexible12.655.73.4e+03 3.53Center3.460.005550.0684  3.453.472.91e+032.98e+032.84e+03
6.51e+05https://www.airbnb.com/rooms/650825272       140110      Apartment14596Private room1  111TRUETRUEValbymoderate12.555.71.57e+033.2 West3.180.007  0.0185  3.163.191.5e+03 1.55e+031.46e+03
6.56e+05https://www.airbnb.com/rooms/656319399       1200200      Apartment2297Private room1  111FALSETRUEAmager Vestflexible12.655.72.6e+03 3.41Amager3.180.0039 0.233   3.173.191.52e+031.55e+031.49e+03
6.57e+05https://www.airbnb.com/rooms/657356505       2100250      Other23992Private room1.5123FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.12e+033.33Brokvarterer3.460.011  -0.13    3.433.482.86e+033e+03       2.72e+03
6.64e+05https://www.airbnb.com/rooms/663859498       12910      Apartment4697Private room1  222FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.72.28e+033.36Brokvarterer3.340.004070.0193  3.333.352.18e+032.22e+032.14e+03
6.7e+05 https://www.airbnb.com/rooms/670384511       1298186      Apartment12795Private room2  113TRUETRUEAmager Vestmoderate12.655.73.09e+033.49Amager3.380.006880.111   3.363.392.39e+032.46e+032.31e+03
6.82e+05https://www.airbnb.com/rooms/681827498       20150      Condominium16795Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer3.350.0071 -0.0542  3.343.372.26e+032.33e+032.19e+03
7.69e+05https://www.airbnb.com/rooms/768784697       2300200      Apartment8798Private room1  124FALSETRUEAmager Vestmoderate12.655.63.09e+033.49Amager3.330.005110.161   3.323.342.13e+032.18e+032.08e+03
7.69e+05https://www.airbnb.com/rooms/768831452       1200150      Other6199Private room1  113FALSETRUEAmager Vestflexible12.655.62.61e+033.42Amager3.340.007980.0804  3.323.352.17e+032.25e+032.09e+03
8.13e+05https://www.airbnb.com/rooms/813233558       110090      Apartment21795Private room1  112FALSETRUENrrebromoderate12.655.72.69e+033.43Brokvarterer3.3 0.007890.129   3.293.322e+03       2.07e+031.93e+03
8.22e+05https://www.airbnb.com/rooms/821817498       100      Apartment21100Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer3.290.003560.00593 3.293.3 1.96e+032e+03       1.93e+03
8.28e+05https://www.airbnb.com/rooms/828245206       160119      Apartment5696Private room1  112FALSETRUEFrederiksbergflexible12.555.71.36e+033.13Brokvarterer3.250.00338-0.115   3.243.261.77e+031.8e+03 1.75e+03
8.41e+05https://www.airbnb.com/rooms/840903399       1180100      Apartment31897Private room1  111TRUEFALSEAmager Vestmoderate12.655.72.18e+033.34Amager3.290.0112 0.0495  3.273.311.94e+032.04e+031.85e+03
8.57e+05https://www.airbnb.com/rooms/856706578       1125150      Apartment17193Private room1  224TRUEFALSEFrederiksbergmoderate12.655.73.04e+033.48Brokvarterer3.440.006340.0447  3.433.452.74e+032.82e+032.66e+03
8.64e+05https://www.airbnb.com/rooms/864049452       1150125      Apartment8798Private room1  112TRUEFALSEsterbromoderate12.655.72.46e+033.39Brokvarterer3.310.004280.0779  3.3 3.322.05e+032.09e+032.01e+03
8.77e+05https://www.airbnb.com/rooms/876975392       19090      Apartment27693Private room1  112FALSETRUENrrebromoderate12.655.72.02e+033.3 Brokvarterer3.310.00993-0.00398 3.293.332.04e+032.13e+031.95e+03
8.8e+05 https://www.airbnb.com/rooms/879765598       14000      Other3094Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.79e+033.45Brokvarterer3.360.007760.0855  3.353.382.29e+032.37e+032.21e+03
8.85e+05https://www.airbnb.com/rooms/885261485       100      Apartment9097Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.71.94e+033.29Center3.460.00487-0.174   3.453.472.9e+03 2.96e+032.83e+03
9.1e+05 https://www.airbnb.com/rooms/9098061.05e+03200      Apartment3696Private room1  132FALSETRUEAmager stmoderate12.655.74.2e+03 3.62Amager3.250.003940.378   3.243.251.76e+031.79e+031.73e+03
9.23e+05https://www.airbnb.com/rooms/923152425       10100      Apartment9493Private room1.5111FALSETRUEIndre Bymoderate12.655.72.1e+03 3.32Center3.4 0.00531-0.0778  3.393.412.51e+032.57e+032.45e+03
9.35e+05https://www.airbnb.com/rooms/935427698       11000      Condominium4396Private room1  102FALSETRUEAmager Vestmoderate12.655.72.89e+033.46Amager3.260.005510.202   3.253.271.81e+031.86e+031.77e+03
9.49e+05https://www.airbnb.com/rooms/948953697       20200      Other1096Private room1  102TRUETRUEValbyflexible12.555.72.79e+033.45West3.240.008780.209   3.223.251.72e+031.79e+031.66e+03
9.49e+05https://www.airbnb.com/rooms/948955598       100      Other4696Private room1  102TRUETRUEValbyflexible12.555.72.39e+033.38West3.240.008670.136   3.233.261.75e+031.82e+031.68e+03
9.56e+05https://www.airbnb.com/rooms/956091359       1155150      Apartment9498Private room1  111TRUETRUEAmager Vestmoderate12.655.62.19e+033.34Amager3.250.005030.0894  3.243.261.78e+031.82e+031.74e+03
9.79e+05https://www.airbnb.com/rooms/979445452       215090      Other9391Private room1  114FALSETRUEVanlsemoderate12.555.71.96e+033.29Nordvest3.3 0.00882-0.0121  3.293.322.01e+032.09e+031.93e+03
1.01e+06https://www.airbnb.com/rooms/1014714498       300      Condominium1092Private room1.5101FALSETRUEFrederiksbergmoderate12.555.71.99e+033.3 Brokvarterer3.270.005660.034   3.253.281.84e+031.89e+031.8e+03 
1.03e+06https://www.airbnb.com/rooms/1025486452       1100200      Townhouse13897Private room1  122TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.71e+033.43Brokvarterer3.350.009330.0814  3.333.372.25e+032.34e+032.15e+03
1.03e+06https://www.airbnb.com/rooms/1033496425       100      Apartment17094Private room1  112TRUETRUENrrebroflexible12.655.71.7e+03 3.23Brokvarterer3.290.00621-0.0642  3.283.311.97e+032.03e+031.92e+03
1.03e+06https://www.airbnb.com/rooms/1033553472       11000      Apartment5799Private room1  102TRUETRUENrrebrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer3.330.00419-0.0292  3.323.342.13e+032.17e+032.09e+03
1.03e+06https://www.airbnb.com/rooms/1033676498       11000      Apartment11396Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.09e+033.32Brokvarterer3.330.00479-0.0127  3.323.342.15e+032.2e+03 2.11e+03
1.04e+06https://www.airbnb.com/rooms/1040910485       100      Apartment8799Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.61.94e+033.29Brokvarterer3.290.004340.0007613.283.3 1.94e+031.97e+031.9e+03 
1.07e+06https://www.airbnb.com/rooms/1069482565       10250      Apartment20597Private room1  111TRUEFALSEIndre Bymoderate12.655.73.26e+033.51Center3.430.007390.0862  3.413.442.67e+032.76e+032.59e+03
1.09e+06https://www.airbnb.com/rooms/1093642332       27537      House4293Private room1  112FALSETRUEValbyflexible12.555.71.4e+03 3.15West3.150.00675-0.00681 3.143.171.43e+031.47e+031.38e+03
1.1e+06 https://www.airbnb.com/rooms/1102901498       1150250      Apartment11495Private room1  011FALSETRUEIndre Bymoderate12.655.73.14e+033.5 Center3.330.005320.163   3.323.342.16e+032.21e+032.11e+03
1.14e+06https://www.airbnb.com/rooms/1143614498       11000      Apartment4797Private room1  102TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.09e+033.32Brokvarterer3.320.00416-0.00271 3.323.332.11e+032.15e+032.07e+03
1.17e+06https://www.airbnb.com/rooms/1167176498       11500      Apartment3095Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.72.14e+033.33Brokvarterer3.3 0.0041 0.0318  3.293.311.99e+032.03e+031.95e+03
1.19e+06https://www.airbnb.com/rooms/1194269352       12500      Apartment16100Private room1  222FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.66e+033.22Brokvarterer3.340.00405-0.118   3.333.352.18e+032.22e+032.14e+03
1.2e+06 https://www.airbnb.com/rooms/1200614399       110090      House5294Private room1  111TRUETRUEAmager Vestflexible12.655.62.06e+033.31Amager3.230.006950.0821  3.223.241.7e+03 1.76e+031.65e+03
1.22e+06https://www.airbnb.com/rooms/1218328498       100      Apartment19196Private room1  112FALSETRUENrrebroflexible12.655.71.99e+033.3 Brokvarterer3.270.007150.0279  3.263.291.87e+031.93e+031.81e+03
1.22e+06https://www.airbnb.com/rooms/1220002452       1150200      Apartment20298Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.72.76e+033.44Center3.480.00721-0.0419  3.473.5 3.04e+033.14e+032.94e+03
1.23e+06https://www.airbnb.com/rooms/1227230751       1150100      Apartment1692Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.55e+033.55Center3.410.004240.137   3.413.422.59e+032.64e+032.54e+03
1.25e+06https://www.airbnb.com/rooms/1248120797       1385150      Apartment3592Private room1.5113FALSETRUEAmager Vestmoderate12.655.74.17e+033.62Amager3.3 0.004510.318   3.293.312.01e+032.05e+031.97e+03
1.3e+06 https://www.airbnb.com/rooms/1301296292       14000      Apartment1193Private room1  111FALSEFALSENrrebrostrict_14_with_grace_period12.655.71.57e+033.2 Brokvarterer3.250.00362-0.0512  3.243.251.76e+031.79e+031.74e+03
1.3e+06 https://www.airbnb.com/rooms/1302945352       2200100      Apartment6196Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.61e+033.21Brokvarterer3.290.0037 -0.0887  3.293.3 1.97e+032.01e+031.94e+03
1.31e+06https://www.airbnb.com/rooms/1305915352       10200      House7298Private room1  223FALSEFALSEVesterbro-Kongens Enghavemoderate12.555.62.21e+033.34Brokvarterer3.380.00659-0.037   3.373.392.4e+03 2.48e+032.33e+03
1.33e+06https://www.airbnb.com/rooms/1325512498       130050      Apartment1798Private room1  112FALSETRUENrrebromoderate12.555.72.49e+033.4 Brokvarterer3.270.0033 0.125   3.263.281.87e+031.9e+03 1.84e+03
1.37e+06https://www.airbnb.com/rooms/1369531525       1100250      Townhouse4295Private room1.5111TRUETRUEAmager Vestmoderate12.655.73.2e+03 3.51Amager3.280.008580.228   3.263.291.89e+031.97e+031.82e+03
1.38e+06https://www.airbnb.com/rooms/1377311498       11500      Condominium13794Private room1.5112FALSEFALSENrrebromoderate12.555.72.14e+033.33Brokvarterer3.330.006820.00534 3.313.342.12e+032.18e+032.05e+03
1.38e+06https://www.airbnb.com/rooms/1380790252       1250150      Apartment2693Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.86e+033.27Brokvarterer3.270.003250.00276 3.263.271.85e+031.87e+031.82e+03
1.4e+06 https://www.airbnb.com/rooms/1398989452       1250100      Apartment6097Private room1  111TRUEFALSENrrebrostrict_14_with_grace_period12.655.72.46e+033.39Brokvarterer3.290.004320.101   3.283.3 1.95e+031.99e+031.91e+03
1.42e+06https://www.airbnb.com/rooms/1423825618       100      Apartment14097Private room1  112TRUETRUEIndre Byflexible12.655.72.47e+033.39Center3.420.00573-0.0319  3.413.442.66e+032.73e+032.59e+03
1.44e+06https://www.airbnb.com/rooms/1442435252       1100100      Apartment3293Private room1  101TRUEFALSEValbyflexible12.555.71.51e+033.18West3.130.005820.0517  3.123.141.34e+031.37e+031.3e+03 
1.46e+06https://www.airbnb.com/rooms/1455294751       3100400      Apartment9591Private room1  103FALSEFALSEIndre Byflexible12.655.73.1e+03 3.49Center3.420.004860.076   3.413.432.61e+032.66e+032.55e+03
1.46e+06https://www.airbnb.com/rooms/1457864325       12000      Apartment16191Private room1  112FALSETRUEIndre Byflexible12.655.71.5e+03 3.18Center3.390.00644-0.215   3.383.4 2.46e+032.53e+032.39e+03
1.47e+06https://www.airbnb.com/rooms/1471084372       1300140      Apartment3093Private room1  112FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.72.35e+033.37Brokvarterer3.290.003440.085   3.283.291.93e+031.96e+031.9e+03 
1.54e+06https://www.airbnb.com/rooms/1541680445       111275      Apartment34998Private room1  112TRUETRUEsterbromoderate12.655.72.19e+033.34Brokvarterer3.360.0119 -0.0165  3.333.382.28e+032.4e+03 2.16e+03
1.54e+06https://www.airbnb.com/rooms/1544061425       1175140      Apartment5495Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.44e+033.39Brokvarterer3.240.003570.149   3.233.241.73e+031.76e+031.7e+03 
1.55e+06https://www.airbnb.com/rooms/1546617379       11000      Apartment2397Private room1  111FALSETRUEAmager Vestmoderate12.655.71.62e+033.21Amager3.210.00405-2.42e-053.2 3.221.62e+031.65e+031.59e+03
1.56e+06https://www.airbnb.com/rooms/1557373624       100      Apartment41395Private room1  112TRUETRUEIndre Bymoderate12.655.72.5e+03 3.4 Center3.5 0.0141 -0.0985  3.473.523.13e+033.34e+032.94e+03
1.56e+06https://www.airbnb.com/rooms/1563229452       15050      Apartment3199Private room1.5112TRUETRUENrrebromoderate12.555.72.06e+033.31Brokvarterer3.330.00456-0.0175  3.323.342.14e+032.19e+032.1e+03 
1.58e+06https://www.airbnb.com/rooms/1577506299       100      Apartment8098Private room1  111FALSEFALSEsterbroflexible12.655.71.2e+03 3.08Brokvarterer3.220.004  -0.141   3.213.231.66e+031.69e+031.63e+03
1.59e+06https://www.airbnb.com/rooms/1591147445       1261224      Apartment21297Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.94e+033.47Brokvarterer3.350.007370.117   3.343.372.25e+032.32e+032.17e+03
1.61e+06https://www.airbnb.com/rooms/1613987332       240150      Apartment11590Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.37e+033.14Brokvarterer3.250.00474-0.115   3.243.261.78e+031.82e+031.74e+03
1.62e+06https://www.airbnb.com/rooms/1621001664       1332332      Apartment3498Private room1  112TRUEFALSEAmager Vestmoderate12.655.74.32e+033.64Amager3.280.0046 0.358   3.273.291.89e+031.93e+031.85e+03
1.69e+06https://www.airbnb.com/rooms/1685324452       100      Apartment10096Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.81e+033.26Brokvarterer3.280.0046 -0.0191  3.273.291.89e+031.93e+031.85e+03
1.74e+06https://www.airbnb.com/rooms/1740273399       13000      Apartment6795Private room1  112TRUETRUEBispebjergflexible12.555.71.9e+03 3.28Nordvest3.160.005340.116   3.153.171.45e+031.49e+031.42e+03
1.74e+06https://www.airbnb.com/rooms/1742116598       10500      Townhouse1198Private room1  111TRUETRUEFrederiksbergflexible12.555.74.39e+033.64Brokvarterer3.250.008750.393   3.233.271.78e+031.85e+031.71e+03
1.8e+06 https://www.airbnb.com/rooms/1802389399       20200      Apartment5995Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.6e+03 3.2 Brokvarterer3.270.00349-0.0715  3.273.281.88e+031.91e+031.85e+03
1.81e+06https://www.airbnb.com/rooms/1806840498       1150100      Apartment13898Private room1.5202TRUEFALSEIndre Bymoderate12.655.72.54e+033.41Center3.520.00622-0.12    3.513.543.35e+033.44e+033.26e+03
1.81e+06https://www.airbnb.com/rooms/1810626392       100      Apartment7293Private room1  111TRUEFALSEAmager stflexible12.655.71.57e+033.2 Amager3.210.00482-0.0187  3.2 3.221.64e+031.67e+031.6e+03 
1.87e+06https://www.airbnb.com/rooms/1866847452       2500      Apartment10097Private room1  122FALSEFALSEFrederiksbergmoderate12.555.71.86e+033.27Brokvarterer3.280.00433-0.0151  3.283.291.92e+031.96e+031.89e+03
1.92e+06https://www.airbnb.com/rooms/1917329498       12000      Condominium4397Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.19e+033.34Brokvarterer3.330.005680.00586 3.323.352.16e+032.22e+032.11e+03
1.93e+06https://www.airbnb.com/rooms/1932744498       12000      Apartment5299Private room1  112FALSETRUENrrebromoderate12.655.72.19e+033.34Brokvarterer3.280.003480.0623  3.273.291.9e+03 1.93e+031.87e+03
1.95e+06https://www.airbnb.com/rooms/1945602345       10100      House3899Private room1  112TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.78e+033.25Nordvest3.230.007460.0236  3.213.241.69e+031.74e+031.63e+03
2.01e+06https://www.airbnb.com/rooms/2007532299       1200100      Condominium5693Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.8e+03 3.25Amager3.280.00572-0.0216  3.263.291.89e+031.94e+031.84e+03
2.02e+06https://www.airbnb.com/rooms/2017914379       17597      Apartment27693Private room1  223TRUEFALSENrrebrostrict_14_with_grace_period12.655.71.98e+033.3 Brokvarterer3.440.00957-0.142   3.423.462.74e+032.87e+032.63e+03
2.02e+06https://www.airbnb.com/rooms/2019104551       11000      Apartment2494Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.3e+03 3.36Brokvarterer3.290.003440.0765  3.283.291.93e+031.96e+031.9e+03 
2.09e+06https://www.airbnb.com/rooms/2085203239       1249109      Apartment8796Private room1  112FALSETRUEValbymoderate12.555.71.64e+033.22West3.170.005810.0417  3.163.181.49e+031.53e+031.45e+03
2.14e+06https://www.airbnb.com/rooms/2143694399       100      Apartment6194Private room1  112FALSETRUEAmager stmoderate12.655.71.6e+03 3.2 Amager3.250.00415-0.0439  3.243.261.77e+031.8e+03 1.73e+03
2.15e+06https://www.airbnb.com/rooms/2152286412       1400100      Apartment4996Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.45e+033.39Center3.420.00426-0.0355  3.423.432.66e+032.71e+032.61e+03
2.24e+06https://www.airbnb.com/rooms/2236203651       20100      Apartment3794Private room1  112TRUETRUEAmager Vestflexible12.655.72.6e+03 3.42Amager3.250.004530.17    3.243.251.76e+031.8e+03 1.72e+03
2.27e+06https://www.airbnb.com/rooms/2266880326       2100100      Apartment2494Private room1  112FALSEFALSENrrebromoderate12.555.71.4e+03 3.15Brokvarterer3.270.00325-0.12    3.263.271.85e+031.88e+031.82e+03
2.27e+06https://www.airbnb.com/rooms/2271424498       150450      Apartment63100Private room1  113FALSETRUENrrebromoderate12.655.73.84e+033.58Brokvarterer3.320.003850.267   3.313.332.08e+032.11e+032.04e+03
2.28e+06https://www.airbnb.com/rooms/2275416399       110090      House3495Private room1  112TRUETRUEAmager Vestflexible12.655.62.06e+033.31Amager3.270.006820.048   3.253.281.84e+031.9e+03 1.79e+03
2.34e+06https://www.airbnb.com/rooms/2342778279       1200100      Apartment10796Private room1  112TRUETRUEFrederiksbergmoderate12.655.71.72e+033.23Brokvarterer3.310.00458-0.0789  3.3 3.322.06e+032.1e+03 2.02e+03
2.37e+06https://www.airbnb.com/rooms/2365927452       41250      Apartment8193Private room1  112TRUETRUEAmager Vestmoderate12.655.71.93e+033.29Amager3.280.004770.00779 3.273.291.9e+03 1.94e+031.86e+03
2.37e+06https://www.airbnb.com/rooms/2371616299       100      Apartment1090Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.2e+03 3.08Brokvarterer3.280.00354-0.201   3.273.291.9e+03 1.93e+031.87e+03
2.38e+06https://www.airbnb.com/rooms/2382240352       12500      Apartment3598Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.66e+033.22Brokvarterer3.270.00332-0.0548  3.273.281.88e+031.91e+031.85e+03
2.46e+06https://www.airbnb.com/rooms/2459663299       100      Apartment12496Private room1  112TRUETRUEAmager Vestflexible12.655.71.2e+03 3.08Amager3.260.00548-0.185   3.253.271.83e+031.88e+031.79e+03
2.49e+06https://www.airbnb.com/rooms/2487940598       1330330      Apartment1597Private room1  112FALSETRUENrrebromoderate12.655.74.04e+033.61Brokvarterer3.270.003290.337   3.263.281.86e+031.89e+031.83e+03
2.5e+06 https://www.airbnb.com/rooms/2499542498       12500      Apartment45198Private room1  112TRUEFALSEIndre Bymoderate12.655.72.24e+033.35Center3.510.0155 -0.156   3.483.543.21e+033.44e+032.99e+03
2.51e+06https://www.airbnb.com/rooms/2508408551       2300200      Apartment3396Private room1  123FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.5e+03 3.4 Center3.460.00433-0.0589  3.453.472.87e+032.92e+032.81e+03
2.54e+06https://www.airbnb.com/rooms/2541947498       2200200      Apartment12692Private room1  112TRUEFALSEVesterbro-Kongens Enghaveflexible12.655.72.19e+033.34Brokvarterer3.280.005090.0563  3.273.291.93e+031.97e+031.88e+03
2.57e+06https://www.airbnb.com/rooms/2568775498       1500      Apartment9196Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.04e+033.31Brokvarterer3.280.0041 0.0288  3.273.291.91e+031.95e+031.88e+03
2.59e+06https://www.airbnb.com/rooms/2592713312       1150150      Apartment8592Private room1  112FALSETRUEsterbromoderate12.655.72e+03       3.3 Brokvarterer3.280.003970.0256  3.273.281.88e+031.92e+031.85e+03
2.64e+06https://www.airbnb.com/rooms/2642090399       15252      Apartment3399Private room1.5112TRUETRUENrrebromoderate12.555.71.86e+033.27Brokvarterer3.330.00455-0.0628  3.323.342.14e+032.19e+032.1e+03 
2.65e+06https://www.airbnb.com/rooms/2647233598       220080      Apartment32993Private room1  123FALSETRUEFrederiksbergmoderate12.555.72.59e+033.41Brokvarterer3.350.0118 0.0598  3.333.382.26e+032.38e+032.14e+03
2.67e+06https://www.airbnb.com/rooms/2667270498       10100      Apartment10399Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.39e+033.38Brokvarterer3.340.004640.0433  3.333.342.16e+032.21e+032.12e+03
2.71e+06https://www.airbnb.com/rooms/2708639299       11000      Apartment1494Private room1  111FALSEFALSEFrederiksbergmoderate12.555.71.3e+03 3.11Brokvarterer3.230.0034 -0.117   3.223.241.7e+03 1.72e+031.67e+03
2.73e+06https://www.airbnb.com/rooms/2728538452       2150100      House2393Private room1  111FALSETRUEFrederiksbergflexible12.555.71.96e+033.29Brokvarterer3.220.006450.0699  3.213.231.67e+031.72e+031.62e+03
2.77e+06https://www.airbnb.com/rooms/2766765252       100      Apartment8995Private room0.5101FALSETRUEVanlsemoderate12.555.71.01e+033   Nordvest3.1 0.00587-0.0972  3.093.111.26e+031.29e+031.23e+03
2.78e+06https://www.airbnb.com/rooms/2777426545       100      House11798Private room1  102TRUEFALSEVesterbro-Kongens Enghaveflexible12.555.62.18e+033.34Brokvarterer3.310.007390.0287  3.3 3.322.04e+032.11e+031.97e+03
2.78e+06https://www.airbnb.com/rooms/2777681352       23000      Apartment6699Private room1  112TRUETRUENrrebromoderate12.555.71.71e+033.23Brokvarterer3.310.0041 -0.0779  3.3 3.322.04e+032.08e+032.01e+03
2.8e+06 https://www.airbnb.com/rooms/2801086325       2125125      House9395Private room1  112TRUETRUEVanlsemoderate12.555.71.42e+033.15Nordvest3.210.00755-0.0584  3.2 3.231.63e+031.69e+031.58e+03
2.81e+06https://www.airbnb.com/rooms/2808956279       1100199      Apartment5198Private room1  111TRUEFALSENrrebromoderate12.555.72.01e+033.3 Brokvarterer3.270.004160.033   3.263.281.86e+031.9e+03 1.83e+03
2.82e+06https://www.airbnb.com/rooms/2824743352       1500      Apartment2390Private room2  111FALSEFALSEsterbromoderate12.655.71.46e+033.16Brokvarterer3.280.00554-0.115   3.273.291.9e+03 1.95e+031.85e+03
2.83e+06https://www.airbnb.com/rooms/2826469425       1253201      Apartment10100Private room1  112FALSETRUEIndre Bymoderate12.655.72.76e+033.44Center3.4 0.004280.0362  3.4 3.412.54e+032.59e+032.49e+03
2.83e+06https://www.airbnb.com/rooms/2834713299       11000      House1293Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.3e+03 3.11West3.160.00708-0.0459  3.143.171.44e+031.49e+031.4e+03 
2.84e+06https://www.airbnb.com/rooms/2844814498       30100      House1893Private room1  133FALSETRUEValbyflexible12.555.71.99e+033.3 West3.190.006730.114   3.173.2 1.53e+031.58e+031.49e+03
2.89e+06https://www.airbnb.com/rooms/2891048492       100      Apartment1096Private room1  112FALSETRUEIndre Byflexible12.655.71.97e+033.29Center3.370.00403-0.078   3.363.382.36e+032.4e+03 2.31e+03
2.91e+06https://www.airbnb.com/rooms/2905934764       110050      Condominium1892Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.73.36e+033.53Brokvarterer3.290.005260.231   3.283.311.97e+032.02e+031.93e+03
2.92e+06https://www.airbnb.com/rooms/2916891432       2050      Apartment6594Private room1  212FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.73e+033.24Brokvarterer3.340.00425-0.101   3.333.352.18e+032.22e+032.14e+03
2.94e+06https://www.airbnb.com/rooms/2937773498       100      Apartment4195Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer3.240.003170.0547  3.243.251.76e+031.78e+031.73e+03
2.95e+06https://www.airbnb.com/rooms/2946481412       17575      Apartment14593Private room1  112TRUETRUEAmager Vestmoderate12.655.72.02e+033.31Amager3.290.005870.0166  3.283.3 1.95e+032e+03       1.9e+03 
3.04e+06https://www.airbnb.com/rooms/3036965252       1150150      Apartment5897Private room0.5102FALSETRUEAmager stflexible12.655.71.76e+033.25Amager3.2 0.004660.0482  3.193.211.57e+031.61e+031.54e+03
3.11e+06https://www.airbnb.com/rooms/3105546332       12240      Other6796Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.61.55e+033.19Brokvarterer3.380.00796-0.189   3.363.4 2.4e+03 2.49e+032.31e+03
3.14e+06https://www.airbnb.com/rooms/3141745239       2050      Apartment1098Private room1  102FALSETRUEBispebjergflexible12.555.7956       2.98Nordvest3.130.00459-0.146   3.123.141.34e+031.37e+031.31e+03
3.14e+06https://www.airbnb.com/rooms/3144558359       11490      Condominium6499Private room1  111TRUETRUEsterbromoderate12.655.71.58e+033.2 Brokvarterer3.290.00569-0.0865  3.283.3 1.93e+031.98e+031.89e+03
3.15e+06https://www.airbnb.com/rooms/3145494279       112070      Apartment21998Private room1  112TRUETRUEIndre Byflexible12.655.71.52e+033.18Center3.440.00786-0.259   3.423.462.75e+032.85e+032.66e+03
3.2e+06 https://www.airbnb.com/rooms/3199820372       100      Apartment21897Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.49e+033.17Brokvarterer3.270.00777-0.0982  3.263.291.87e+031.93e+031.8e+03 
3.21e+06https://www.airbnb.com/rooms/3207575299       110050      Apartment2790Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.5e+03 3.17Brokvarterer3.280.00349-0.106   3.273.291.91e+031.94e+031.88e+03
3.25e+06https://www.airbnb.com/rooms/3245019352       1300      Apartment22198Private room1  111TRUEFALSEAmager stmoderate12.655.71.44e+033.16Amager3.270.00805-0.115   3.263.291.87e+031.94e+031.81e+03
3.25e+06https://www.airbnb.com/rooms/3249158352       11000      Apartment1795Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.51e+033.18Brokvarterer3.250.00359-0.0718  3.243.261.78e+031.81e+031.75e+03
3.26e+06https://www.airbnb.com/rooms/3255922399       11000      Apartment2897Private room1  112FALSETRUEIndre Bymoderate12.655.71.7e+03 3.23Center3.4 0.00414-0.174   3.4 3.412.53e+032.58e+032.48e+03
3.26e+06https://www.airbnb.com/rooms/3261996399       100      Other1196Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.6e+03 3.2 West3.210.00839-0.00397 3.193.221.61e+031.67e+031.55e+03
3.27e+06https://www.airbnb.com/rooms/3266326399       100      House2694Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.6e+03 3.2 West3.150.006690.0506  3.143.171.42e+031.46e+031.38e+03
3.27e+06https://www.airbnb.com/rooms/3268999412       14470      Apartment1692Private room0.5112FALSEFALSEIndre Bystrict_14_with_grace_period12.655.72.1e+03 3.32Center3.390.00486-0.0657  3.383.4 2.44e+032.49e+032.38e+03
3.28e+06https://www.airbnb.com/rooms/3275063352       1050      Apartment3296Private room1  112FALSETRUENrrebroflexible12.655.71.61e+033.21Brokvarterer3.240.00311-0.038   3.243.251.76e+031.78e+031.73e+03
3.32e+06https://www.airbnb.com/rooms/3316790379       1100200      Apartment2191Private room1.5112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.42e+033.38Brokvarterer3.310.004010.075   3.3 3.322.03e+032.07e+032e+03       
3.32e+06https://www.airbnb.com/rooms/3323785498       11500      Apartment7692Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.14e+033.33Center3.420.00451-0.0929  3.413.432.65e+032.71e+032.6e+03 
3.33e+06https://www.airbnb.com/rooms/33285871.88e+0320319      Other8893Private room1  142FALSEFALSEAmager stflexible12.655.77.52e+033.88Amager3.3 0.008130.579   3.283.311.98e+032.05e+031.91e+03
3.34e+06https://www.airbnb.com/rooms/3336629392       100      House18495Private room1.5111FALSETRUEIndre Byflexible12.655.71.57e+033.2 Center3.410.00916-0.215   3.393.432.57e+032.68e+032.47e+03
3.34e+06https://www.airbnb.com/rooms/3341972399       2120100      Apartment2796Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.72e+033.23Brokvarterer3.290.00345-0.0546  3.283.3 1.95e+031.98e+031.92e+03
3.36e+06https://www.airbnb.com/rooms/3357093299       10100      Apartment9994Private room1.5112FALSETRUEAmager Vestflexible12.655.71.6e+03 3.2 Amager3.250.00526-0.05    3.243.261.79e+031.83e+031.75e+03
3.36e+06https://www.airbnb.com/rooms/3364839252       415045      Apartment1593Private room1  121FALSEFALSEBispebjergmoderate12.555.71.16e+033.06Nordvest3.110.00481-0.0483  3.1 3.121.29e+031.32e+031.27e+03
3.37e+06https://www.airbnb.com/rooms/3366023412       100      Apartment2092Private room1  112FALSETRUEAmager Vestflexible12.655.71.65e+033.22Amager3.210.003740.00655 3.2 3.221.62e+031.65e+031.6e+03 
3.38e+06https://www.airbnb.com/rooms/3377489551       270250      Apartment2897Private room1  133FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.27e+033.36Brokvarterer3.280.003350.0759  3.273.291.91e+031.94e+031.88e+03
3.38e+06https://www.airbnb.com/rooms/3382865438       1250100      Apartment24698Private room1  112TRUETRUEIndre Bymoderate12.655.72.4e+03 3.38Center3.470.00851-0.0906  3.453.492.96e+033.08e+032.85e+03
3.39e+06https://www.airbnb.com/rooms/3388899266       111050      Apartment13796Private room1  112TRUETRUEBrnshj-Husumflexible12.555.71.37e+033.14West3.180.00678-0.0465  3.173.2 1.53e+031.58e+031.48e+03
3.45e+06https://www.airbnb.com/rooms/3450902332       27575      House2598Private room1  112FALSETRUEValbyflexible12.555.71.4e+03 3.15West3.160.00673-0.0105  3.143.171.44e+031.48e+031.39e+03
3.48e+06https://www.airbnb.com/rooms/3482608332       100      Apartment4294Private room1  111FALSETRUENrrebroflexible12.655.71.33e+033.12Brokvarterer3.210.00331-0.0843  3.2 3.211.61e+031.64e+031.59e+03
3.53e+06https://www.airbnb.com/rooms/3530784359       2149186      Apartment5192Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.58e+033.2 Brokvarterer3.290.00358-0.088   3.283.3 1.94e+031.97e+031.91e+03
3.56e+06https://www.airbnb.com/rooms/3560024452       21800      Apartment29891Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.99e+033.3 Brokvarterer3.310.0107 -0.0116  3.293.332.04e+032.14e+031.95e+03
3.56e+06https://www.airbnb.com/rooms/3562831312       2150150      Apartment14798Private room1  124TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.4e+03 3.15Brokvarterer3.390.00586-0.249   3.383.412.48e+032.55e+032.42e+03
3.57e+06https://www.airbnb.com/rooms/3570192352       20150      House1699Private room1  122TRUETRUEBrnshj-Husummoderate12.555.71.41e+033.15West3.210.00733-0.065   3.2 3.231.64e+031.69e+031.58e+03
3.6e+06 https://www.airbnb.com/rooms/3598715299       200      Apartment10696Private room1.5112TRUETRUENrrebromoderate12.555.71.2e+03 3.08Brokvarterer3.340.00501-0.262   3.333.352.19e+032.24e+032.14e+03
3.64e+06https://www.airbnb.com/rooms/3637065286       11000      Apartment8495Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.24e+033.09Brokvarterer3.240.00407-0.148   3.233.251.75e+031.78e+031.72e+03
3.66e+06https://www.airbnb.com/rooms/3658168226       21200      Apartment3797Private room1  112FALSETRUEBispebjergmoderate12.555.71.02e+033.01Nordvest3.160.00477-0.147   3.153.171.44e+031.47e+031.4e+03 
3.68e+06https://www.airbnb.com/rooms/3678040399       1150200      Apartment2792Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.55e+033.41Brokvarterer3.270.003270.141   3.263.271.84e+031.87e+031.81e+03
3.69e+06https://www.airbnb.com/rooms/3685353697       1150400      Apartment1495Private room1  111FALSETRUEFrederiksbergmoderate12.555.74.54e+033.66Brokvarterer3.230.0034 0.426   3.223.241.7e+03 1.73e+031.68e+03
3.72e+06https://www.airbnb.com/rooms/37227451.05e+0320499      House16692Private room1  134FALSEFALSEAmager stflexible12.655.74.2e+03 3.62Amager3.330.008580.297   3.313.342.12e+032.2e+03 2.04e+03
3.74e+06https://www.airbnb.com/rooms/3740236850       21000      Apartment4692Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.73.5e+03 3.54Brokvarterer3.290.003530.257   3.283.291.94e+031.97e+031.91e+03
3.78e+06https://www.airbnb.com/rooms/3779896551       2150200      Apartment7393Private room1  122TRUETRUEAmager Vestmoderate12.655.72.35e+033.37Amager3.280.0047 0.0947  3.273.291.89e+031.93e+031.85e+03
3.78e+06https://www.airbnb.com/rooms/3781035498       11000      Apartment24297Private room1.5102TRUETRUEIndre Bymoderate12.655.72.09e+033.32Center3.5 0.00862-0.175   3.483.513.13e+033.26e+033.01e+03
3.85e+06https://www.airbnb.com/rooms/38471182.3e+03 120090      Apartment2192Private room1  112FALSETRUEBispebjergmoderate12.555.79.75e+033.99Nordvest3.150.0047 0.841   3.143.161.4e+03 1.44e+031.38e+03
3.88e+06https://www.airbnb.com/rooms/3880972299       1600      Apartment15090Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.655.71.26e+033.1 Brokvarterer3.3 0.00581-0.203   3.293.312.01e+032.06e+031.95e+03
3.89e+06https://www.airbnb.com/rooms/3891991299       12000      Apartment2793Private room1  102FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.4e+03 3.14Brokvarterer3.240.00306-0.0947  3.233.251.74e+031.76e+031.71e+03
3.9e+06 https://www.airbnb.com/rooms/3900575392       1195295      Apartment2497Private room1  111FALSEFALSEFrederiksbergmoderate12.555.72.94e+033.47Brokvarterer3.240.003390.234   3.233.241.72e+031.75e+031.69e+03
3.91e+06https://www.airbnb.com/rooms/3911851525       21500      Apartment20695Private room1  102TRUETRUENrrebrostrict_14_with_grace_period12.655.72.25e+033.35Brokvarterer3.350.007180.00443 3.333.362.23e+032.3e+03 2.16e+03
3.93e+06https://www.airbnb.com/rooms/3928206352       100      Apartment1793Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.41e+033.15Brokvarterer3.240.00305-0.0892  3.233.241.73e+031.75e+031.71e+03
3.95e+06https://www.airbnb.com/rooms/3945149372       21500      Townhouse11595Private room1.5112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.64e+033.21Amager3.320.00897-0.101   3.3 3.332.07e+032.15e+031.98e+03
3.95e+06https://www.airbnb.com/rooms/3949538498       22000      Apartment8097Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.19e+033.34Amager3.3 0.004850.0386  3.293.312.01e+032.05e+031.96e+03
3.96e+06https://www.airbnb.com/rooms/3960092897       2150200      Apartment3696Private room1  103FALSEFALSEAmager Veststrict_14_with_grace_period12.655.73.74e+033.57Amager3.3 0.004260.273   3.293.312e+03       2.03e+031.96e+03
3.96e+06https://www.airbnb.com/rooms/3960971299       2150100      Condominium4292Private room1  112FALSETRUEValbymoderate12.555.71.35e+033.13West3.170.00655-0.0439  3.163.191.49e+031.53e+031.45e+03
3.98e+06https://www.airbnb.com/rooms/3977491399       1150100      Apartment4092Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.15e+033.33Brokvarterer3.290.003490.0455  3.283.291.93e+031.96e+031.9e+03 
3.98e+06https://www.airbnb.com/rooms/3980777372       1150125      Apartment3794Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.14e+033.33Brokvarterer3.290.003460.0418  3.283.3 1.94e+031.97e+031.91e+03
4.02e+06https://www.airbnb.com/rooms/4019068498       4100100      Apartment1997Private room1.5112FALSETRUEBispebjergflexible12.555.72.09e+033.32Nordvest3.150.005010.167   3.143.161.42e+031.46e+031.39e+03
4.02e+06https://www.airbnb.com/rooms/4024293525       1200150      Apartment1191Private room1  123FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.9e+03 3.46Brokvarterer3.320.003690.147   3.313.322.07e+032.1e+03 2.03e+03
4.06e+06https://www.airbnb.com/rooms/4055799292       11000      House1998Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.27e+033.1 West3.170.0071 -0.0631  3.153.181.47e+031.51e+031.42e+03
4.08e+06https://www.airbnb.com/rooms/4078887392       100      Apartment5696Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.57e+033.2 Brokvarterer3.280.00346-0.08    3.273.281.89e+031.91e+031.86e+03
4.09e+06https://www.airbnb.com/rooms/4086966352       100      Apartment6197Private room1  111FALSETRUEFrederiksbergflexible12.555.71.41e+033.15Brokvarterer3.210.0036 -0.0661  3.213.221.64e+031.67e+031.61e+03
4.11e+06https://www.airbnb.com/rooms/4113742598       1250250      Apartment2796Private room1  112FALSETRUEFrederiksbergflexible12.555.73.64e+033.56Brokvarterer3.240.003080.318   3.243.251.75e+031.78e+031.73e+03
4.13e+06https://www.airbnb.com/rooms/4132033372       11500      Apartment3893Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.64e+033.21Brokvarterer3.250.00363-0.0369  3.243.261.78e+031.81e+031.75e+03
4.14e+06https://www.airbnb.com/rooms/4139642365       11500      Apartment19593Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.61e+033.21Brokvarterer3.310.00698-0.101   3.293.322.03e+032.09e+031.97e+03
4.14e+06https://www.airbnb.com/rooms/4141548352       1600100      Apartment2098Private room0.5112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.41e+033.38Brokvarterer3.260.0042 0.118   3.263.271.84e+031.87e+031.8e+03 
4.16e+06https://www.airbnb.com/rooms/4155326498       100      Apartment11596Private room1  112FALSEFALSEIndre Bymoderate12.655.71.99e+033.3 Center3.420.00518-0.118   3.413.432.61e+032.67e+032.55e+03
4.23e+06https://www.airbnb.com/rooms/4228882498       1800      Apartment3897Private room1  102TRUETRUEValbymoderate12.555.72.07e+033.32West3.2 0.005790.121   3.183.211.57e+031.61e+031.53e+03
4.23e+06https://www.airbnb.com/rooms/4229857299       1150100      Apartment6093Private room1  112FALSEFALSEBispebjergmoderate12.555.71.75e+033.24Nordvest3.160.004920.0864  3.153.171.43e+031.46e+031.4e+03 
4.23e+06https://www.airbnb.com/rooms/4234463266       132110      Apartment3997Private room1  111FALSETRUEsterbromoderate12.655.71.54e+033.19Brokvarterer3.240.00345-0.0514  3.233.241.73e+031.76e+031.7e+03 
4.24e+06https://www.airbnb.com/rooms/4237920272       110050      Apartment1093Private room0.5112FALSETRUEBispebjergmoderate12.555.71.39e+033.14Nordvest3.120.005230.0219  3.113.131.32e+031.35e+031.29e+03
4.28e+06https://www.airbnb.com/rooms/4276029399       11000      Apartment1395Private room1  112FALSETRUEsterbroflexible12.655.71.7e+03 3.23Brokvarterer3.240.00306-0.0103  3.233.251.74e+031.76e+031.71e+03
4.35e+06https://www.airbnb.com/rooms/4353943598       1500      Apartment3096Private room1  112FALSETRUEIndre Byflexible12.655.72.44e+033.39Center3.380.004  0.0123  3.373.382.37e+032.42e+032.33e+03
4.37e+06https://www.airbnb.com/rooms/4365371279       11000      House1995Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.22e+033.08West3.160.00708-0.0774  3.153.181.45e+031.5e+03 1.41e+03
4.38e+06https://www.airbnb.com/rooms/4376719578       11500      Apartment10797Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.46e+033.39Brokvarterer3.3 0.004630.0872  3.3 3.312.01e+032.06e+031.97e+03
4.39e+06https://www.airbnb.com/rooms/4385902525       1240125      Apartment1096Private room1  112FALSETRUENrrebromoderate12.655.72.84e+033.45Brokvarterer3.270.0033 0.186   3.263.271.85e+031.88e+031.82e+03
4.4e+06 https://www.airbnb.com/rooms/4399266478       11500      Apartment6697Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.06e+033.31Brokvarterer3.330.00421-0.0122  3.323.332.12e+032.16e+032.08e+03
4.41e+06https://www.airbnb.com/rooms/4413881399       100      Apartment1398Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.6e+03 3.2 Brokvarterer3.270.00332-0.0676  3.263.281.86e+031.89e+031.84e+03
4.42e+06https://www.airbnb.com/rooms/4420277698       23000      Apartment5497Private room1  113FALSETRUEAmager Vestmoderate12.655.73.09e+033.49Amager3.290.004250.205   3.283.291.93e+031.97e+031.89e+03
4.44e+06https://www.airbnb.com/rooms/4441339173       1350100      House2395Private room1  111FALSETRUEVanlsemoderate12.555.71.44e+033.16Nordvest3.130.007010.024   3.123.151.36e+031.41e+031.32e+03
4.46e+06https://www.airbnb.com/rooms/4458924352       15050      Apartment2897Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.66e+033.22Brokvarterer3.290.00347-0.071   3.283.3 1.95e+031.98e+031.92e+03
4.46e+06https://www.airbnb.com/rooms/4458942352       210050      Apartment1793Private room0.5112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.51e+033.18Brokvarterer3.260.00415-0.0785  3.253.271.81e+031.84e+031.77e+03
4.46e+06https://www.airbnb.com/rooms/4463203598       100      Apartment11098Private room1  112TRUETRUENrrebromoderate12.655.72.39e+033.38Brokvarterer3.320.004640.0622  3.313.332.07e+032.12e+032.03e+03
4.51e+06https://www.airbnb.com/rooms/4505775399       13000      Apartment8399Private room1  112TRUETRUEValbystrict_14_with_grace_period12.555.71.9e+03 3.28West3.220.006080.053   3.213.241.68e+031.73e+031.63e+03
4.54e+06https://www.airbnb.com/rooms/4544267498       11000      Apartment4799Private room1  112FALSETRUENrrebromoderate12.555.72.09e+033.32Brokvarterer3.280.003430.0428  3.273.281.9e+03 1.93e+031.87e+03
4.55e+06https://www.airbnb.com/rooms/4554561299       1200180      Apartment15295Private room0.5122TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.12e+033.33Brokvarterer3.270.006110.0592  3.253.281.85e+031.9e+03 1.8e+03 
4.56e+06https://www.airbnb.com/rooms/4561096299       10200      Apartment19397Private room1  111TRUETRUEAmager stflexible12.655.72e+03       3.3 Amager3.240.007360.0602  3.233.251.74e+031.8e+03 1.68e+03
4.58e+06https://www.airbnb.com/rooms/4583864359       1200100      House2494Private room1  112FALSETRUEBrnshj-Husumflexible12.555.72.04e+033.31West3.150.006680.157   3.143.171.42e+031.46e+031.38e+03
4.61e+06https://www.airbnb.com/rooms/4609483299       150150      Condominium13793Private room1  112FALSETRUEFrederiksbergflexible12.655.71.85e+033.27Brokvarterer3.270.00662-0.00444 3.263.281.86e+031.92e+031.81e+03
4.65e+06https://www.airbnb.com/rooms/4646985638       1250200      Condominium19100Private room1  112TRUETRUEIndre Byflexible12.655.73.6e+03 3.56Center3.420.006210.136   3.413.432.63e+032.71e+032.56e+03
4.65e+06https://www.airbnb.com/rooms/4652503352       20150      Condominium3497Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.41e+033.15Brokvarterer3.290.00511-0.137   3.283.3 1.93e+031.97e+031.88e+03
4.7e+06 https://www.airbnb.com/rooms/4698517571       13500      Condominium24495Private room1  112FALSEFALSEIndre Bymoderate12.655.72.63e+033.42Center3.450.00965-0.0293  3.433.472.82e+032.94e+032.7e+03 
4.7e+06 https://www.airbnb.com/rooms/46997541e+03       21500      Apartment5691Private room1  112FALSETRUENrrebromoderate12.655.74.16e+033.62Brokvarterer3.270.003490.351   3.263.281.86e+031.89e+031.83e+03
4.81e+06https://www.airbnb.com/rooms/4813422598       100      Apartment1690Private room1  112FALSEFALSEsterbroflexible12.655.72.39e+033.38Brokvarterer3.230.0031 0.145   3.233.241.71e+031.74e+031.69e+03
4.82e+06https://www.airbnb.com/rooms/4824478299       1300100      Apartment3293Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.9e+03 3.28Brokvarterer3.290.00345-0.00822 3.283.291.93e+031.96e+031.9e+03 
4.83e+06https://www.airbnb.com/rooms/4831114332       190100      Apartment6598Private room1  112FALSEFALSENrrebromoderate12.655.71.82e+033.26Brokvarterer3.280.00363-0.0199  3.273.291.9e+03 1.93e+031.87e+03
4.84e+06https://www.airbnb.com/rooms/4842831326       11000      Apartment2297Private room1  112FALSETRUEsterbroflexible12.655.71.4e+03 3.15Brokvarterer3.240.00309-0.0966  3.243.251.75e+031.78e+031.73e+03
4.87e+06https://www.airbnb.com/rooms/4869039279       100      House1196Private room1  112TRUETRUEBrnshj-Husumflexible12.555.71.12e+033.05West3.180.00725-0.134   3.173.2 1.52e+031.57e+031.47e+03
4.93e+06https://www.airbnb.com/rooms/4934875252       14001e+03      Apartment2598Private room0.5111FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.75.41e+033.73Brokvarterer3.230.004240.504   3.223.241.69e+031.73e+031.66e+03
4.96e+06https://www.airbnb.com/rooms/4961566551       100      Apartment21396Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.72.2e+03 3.34Brokvarterer3.330.007340.0117  3.323.352.15e+032.22e+032.08e+03
4.97e+06https://www.airbnb.com/rooms/4965011452       1100100      Apartment4394Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.31e+033.36Brokvarterer3.320.004180.0446  3.313.332.08e+032.12e+032.04e+03
5.01e+06https://www.airbnb.com/rooms/5005875352       15090      Apartment10896Private room1  111FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.71.82e+033.26Brokvarterer3.220.004660.0382  3.213.231.66e+031.7e+03 1.63e+03
5.02e+06https://www.airbnb.com/rooms/5023485452       1450      Apartment19696Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.655.71.85e+033.27Brokvarterer3.350.00688-0.0795  3.333.362.23e+032.3e+03 2.16e+03
5.1e+06 https://www.airbnb.com/rooms/5096545498       100      Apartment5092Private room1  112FALSETRUENrrebromoderate12.655.71.99e+033.3 Brokvarterer3.270.0034 0.0302  3.263.281.86e+031.89e+031.83e+03
5.2e+06 https://www.airbnb.com/rooms/5196851352       10100      Apartment4292Private room1.5101FALSETRUENrrebrostrict_14_with_grace_period12.555.71.81e+033.26Brokvarterer3.280.00424-0.0199  3.273.291.89e+031.93e+031.86e+03
5.26e+06https://www.airbnb.com/rooms/5256183751       20299      Other14390Private room1  122FALSEFALSEAmager stflexible12.655.73e+03       3.48Amager3.3 0.008940.176   3.283.322.01e+032.09e+031.93e+03
5.27e+06https://www.airbnb.com/rooms/5266224359       100      Apartment10100Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.44e+033.16Brokvarterer3.240.0035 -0.0797  3.233.241.73e+031.75e+031.7e+03 
5.31e+06https://www.airbnb.com/rooms/5311361897       100      Apartment4894Private room1  112FALSETRUEIndre Bymoderate12.655.73.59e+033.55Center3.4 0.004160.152   3.393.412.53e+032.58e+032.48e+03
5.32e+06https://www.airbnb.com/rooms/5323217352       1150100      Other29698Private room1  123TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.96e+033.29Amager3.450.0121 -0.158   3.433.472.82e+032.97e+032.67e+03
5.33e+06https://www.airbnb.com/rooms/5326654578       2300200      Apartment5294Private room1  133FALSETRUEIndre Bymoderate12.655.72.61e+033.42Center3.440.00432-0.0224  3.433.452.75e+032.8e+03 2.7e+03 
5.33e+06https://www.airbnb.com/rooms/5332373352       100      Apartment6797Private room2  112FALSETRUEAmager Vestflexible12.655.71.41e+033.15Amager3.280.00595-0.13    3.273.291.9e+03 1.95e+031.85e+03
5.35e+06https://www.airbnb.com/rooms/5350998897       12000      Apartment6494Private room1  223FALSEFALSEFrederiksbergflexible12.555.73.79e+033.58Brokvarterer3.330.003840.25    3.323.342.13e+032.17e+032.09e+03
5.35e+06https://www.airbnb.com/rooms/5352770412       1100100      House6398Private room1  122TRUETRUEAmager stmoderate12.655.72.15e+033.33Amager3.3 0.006860.0312  3.293.312e+03       2.06e+031.94e+03
5.41e+06https://www.airbnb.com/rooms/5409492452       1150250      Condominium15395Private room1  222FALSETRUENrrebromoderate12.655.72.96e+033.47Brokvarterer3.350.007230.123   3.333.362.23e+032.3e+03 2.16e+03
5.41e+06https://www.airbnb.com/rooms/5411807299       1150250      House7392Private room1  112FALSETRUEVanlsemoderate12.555.72.35e+033.37Nordvest3.180.007170.195   3.163.191.5e+03 1.55e+031.45e+03
5.48e+06https://www.airbnb.com/rooms/5478692598       100      Apartment2496Private room1  121FALSETRUEsterbromoderate12.655.72.39e+033.38Brokvarterer3.230.003380.145   3.233.241.71e+031.74e+031.69e+03
5.49e+06https://www.airbnb.com/rooms/5486840399       100      Apartment6398Private room1  112FALSETRUEIndre Byflexible12.655.71.6e+03 3.2 Center3.380.00428-0.181   3.383.392.42e+032.47e+032.37e+03
5.49e+06https://www.airbnb.com/rooms/5493419412       1175100      Condominium8999Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.72.22e+033.35Center3.480.00618-0.13    3.463.493e+03       3.08e+032.92e+03
5.5e+06 https://www.airbnb.com/rooms/5495140418       1250150      Apartment2594Private room1  112FALSEFALSEAmager Veststrict_14_with_grace_period12.655.62.52e+033.4 Amager3.260.004080.142   3.253.271.82e+031.85e+031.78e+03
5.5e+06 https://www.airbnb.com/rooms/5503308372       11500      Apartment10998Private room1.5101TRUETRUEFrederiksbergmoderate12.555.71.64e+033.21Brokvarterer3.310.00522-0.0927  3.3 3.322.03e+032.08e+031.98e+03
5.51e+06https://www.airbnb.com/rooms/55072131e+03       2250300      Apartment5890Private room1  121FALSETRUEFrederiksbergmoderate12.555.74.26e+033.63Brokvarterer3.230.003680.398   3.223.241.71e+031.73e+031.68e+03
5.66e+06https://www.airbnb.com/rooms/5655488638       1200400      Apartment1691Private room1  111FALSETRUEsterbrostrict_14_with_grace_period12.655.74.35e+033.64Brokvarterer3.240.003630.394   3.243.251.76e+031.79e+031.73e+03
5.66e+06https://www.airbnb.com/rooms/5659371452       1150150      Apartment14998Private room1  122TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.72.56e+033.41Brokvarterer3.320.005510.0847  3.313.332.1e+03 2.16e+032.05e+03
5.7e+06 https://www.airbnb.com/rooms/5696418651       160150      Apartment1094Private room1  111FALSEFALSEIndre Bymoderate12.655.73.26e+033.51Center3.360.004320.153   3.353.372.29e+032.34e+032.25e+03
5.78e+06https://www.airbnb.com/rooms/5784125399       1050      Apartment6093Private room1  112FALSETRUEIndre Byflexible12.655.71.8e+03 3.25Center3.380.00418-0.122   3.373.382.38e+032.43e+032.34e+03
5.78e+06https://www.airbnb.com/rooms/5784408485       11800      Apartment2498Private room1  112FALSEFALSENrrebromoderate12.655.72.12e+033.33Brokvarterer3.270.003290.0538  3.273.281.87e+031.9e+03 1.85e+03
5.8e+06 https://www.airbnb.com/rooms/5800324478       200      Apartment24695Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.91e+033.28Brokvarterer3.350.00844-0.0731  3.343.372.26e+032.35e+032.18e+03
5.82e+06https://www.airbnb.com/rooms/5821972252       11000      Apartment2697Private room1  111TRUEFALSEValbyflexible12.555.71.11e+033.04West3.130.00581-0.0864  3.123.141.35e+031.39e+031.32e+03
5.83e+06https://www.airbnb.com/rooms/5830110478       350150      Apartment27296Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.96e+033.29Brokvarterer3.360.0093 -0.0676  3.343.382.29e+032.39e+032.2e+03 
5.84e+06https://www.airbnb.com/rooms/5837856399       10100      Apartment6594Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72e+03       3.3 Brokvarterer3.280.004080.0234  3.273.281.89e+031.93e+031.86e+03
5.86e+06https://www.airbnb.com/rooms/5858011379       15275      Apartment1697Private room1  112FALSETRUEValbystrict_14_with_grace_period12.555.71.87e+033.27West3.180.005410.09    3.173.191.52e+031.56e+031.48e+03
5.89e+06https://www.airbnb.com/rooms/5890402419       2075      Apartment9198Private room1  112TRUETRUENrrebroflexible12.655.71.68e+033.22Brokvarterer3.290.00439-0.0621  3.283.3 1.93e+031.97e+031.9e+03 
5.91e+06https://www.airbnb.com/rooms/5908499498       11500      Apartment13899Private room1  112TRUETRUEIndre Bymoderate12.655.72.14e+033.33Center3.450.0056 -0.123   3.443.472.85e+032.92e+032.77e+03
5.93e+06https://www.airbnb.com/rooms/5926122352       1500      Apartment10893Private room1  112FALSEFALSENrrebromoderate12.655.71.46e+033.16Brokvarterer3.280.0045 -0.117   3.273.291.91e+031.95e+031.87e+03
5.95e+06https://www.airbnb.com/rooms/5950433598       10250      Apartment11992Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.39e+033.53Center3.430.0053 0.0994  3.423.442.7e+03 2.76e+032.63e+03
5.99e+06https://www.airbnb.com/rooms/5987411339       1100175      Apartment18395Private room1  111TRUETRUEsterbroflexible12.655.72.16e+033.33Brokvarterer3.260.006690.0714  3.253.281.83e+031.89e+031.77e+03
6.01e+06https://www.airbnb.com/rooms/6007570352       1150200      Apartment3499Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.655.72.36e+033.37Brokvarterer3.290.003540.0783  3.293.3 1.97e+032e+03       1.94e+03
6.01e+06https://www.airbnb.com/rooms/6011562678       5750      Apartment4798Private room1  112FALSETRUEAmager stmoderate12.655.72.79e+033.45Amager3.250.004050.195   3.243.261.78e+031.81e+031.75e+03
6.03e+06https://www.airbnb.com/rooms/6028651452       100      Apartment7991Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.81e+033.26Brokvarterer3.290.004  -0.0343  3.283.3 1.96e+031.99e+031.92e+03
6.04e+06https://www.airbnb.com/rooms/6035346598       13000      Apartment1596Private room1  112FALSEFALSEIndre Byflexible12.655.72.69e+033.43Center3.370.004010.0572  3.373.382.36e+032.4e+03 2.32e+03
6.1e+06 https://www.airbnb.com/rooms/6096125272       110050      Apartment4097Private room1  111FALSETRUEFrederiksbergmoderate12.555.71.39e+033.14Brokvarterer3.240.00345-0.0956  3.233.241.73e+031.76e+031.7e+03 
6.11e+06https://www.airbnb.com/rooms/6111481498       2150700      Apartment1694Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.14e+033.33Brokvarterer3.270.003260.0649  3.263.271.84e+031.87e+031.82e+03
6.14e+06https://www.airbnb.com/rooms/6143381379       1100100      Apartment12897Private room1  112FALSEFALSEBispebjergflexible12.555.72.02e+033.3 Nordvest3.150.006250.159   3.133.161.4e+03 1.44e+031.36e+03
6.15e+06https://www.airbnb.com/rooms/6148669352       2100100      Apartment11193Private room1  113FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.51e+033.18Brokvarterer3.320.00471-0.138   3.313.332.07e+032.12e+032.03e+03
6.16e+06https://www.airbnb.com/rooms/6158131365       10224      Apartment6697Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.36e+033.37Brokvarterer3.250.003570.121   3.243.261.78e+031.81e+031.76e+03
6.19e+06https://www.airbnb.com/rooms/6188163412       2075      Apartment1595Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.65e+033.22Brokvarterer3.270.00327-0.0501  3.263.271.85e+031.88e+031.82e+03
6.21e+06https://www.airbnb.com/rooms/6206614651       11500      Apartment8296Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.75e+033.44Brokvarterer3.310.004220.131   3.3 3.322.04e+032.08e+032e+03       
6.25e+06https://www.airbnb.com/rooms/6246994352       10200      Apartment26100Private room1  112TRUEFALSEFrederiksbergstrict_14_with_grace_period12.555.72.21e+033.34Brokvarterer3.320.004280.0204  3.323.332.11e+032.15e+032.07e+03
6.25e+06https://www.airbnb.com/rooms/6251488551       11500      Apartment4493Private room1  101TRUEFALSENrrebromoderate12.655.72.35e+033.37Brokvarterer3.260.004210.109   3.253.271.83e+031.87e+031.8e+03 
6.27e+06https://www.airbnb.com/rooms/6265316591       1150200      Other1891Private room1  232FALSEFALSENrrebrostrict_14_with_grace_period12.555.73.31e+033.52Brokvarterer3.4 0.008020.12    3.383.422.51e+032.6e+03 2.42e+03
6.41e+06https://www.airbnb.com/rooms/6412978498       275200      Apartment19993Private room1  123TRUETRUENrrebromoderate12.655.72.07e+033.32Brokvarterer3.360.00699-0.0458  3.353.372.3e+03 2.37e+032.23e+03
6.42e+06https://www.airbnb.com/rooms/6421166352       100      Apartment1798Private room1  112FALSETRUENrrebromoderate12.555.71.41e+033.15Brokvarterer3.270.0033 -0.123   3.263.281.87e+031.9e+03 1.84e+03
6.43e+06https://www.airbnb.com/rooms/6427286545       11150      House2194Private room1  111FALSETRUEBrnshj-Husummoderate12.555.72.3e+03 3.36West3.140.006920.218   3.133.161.39e+031.43e+031.35e+03
6.43e+06https://www.airbnb.com/rooms/6428857498       3250280      Apartment12394Private room1  135TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.24e+033.35Brokvarterer3.420.00586-0.0707  3.413.432.64e+032.71e+032.57e+03
6.43e+06https://www.airbnb.com/rooms/6431178551       21250      Apartment9299Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.33e+033.37Brokvarterer3.310.004360.0524  3.313.322.06e+032.11e+032.02e+03
6.48e+06https://www.airbnb.com/rooms/6484100352       100      Apartment3194Private room1  111FALSETRUEBispebjergflexible12.555.71.41e+033.15Nordvest3.090.004670.0595  3.083.1 1.23e+031.25e+031.2e+03 
6.55e+06https://www.airbnb.com/rooms/6549452399       11000      Apartment1395Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.7e+03 3.23Center3.380.0044 -0.152   3.373.392.4e+03 2.45e+032.36e+03
6.58e+06https://www.airbnb.com/rooms/6579997352       11200      Apartment1999Private room1  112FALSETRUEAmager stflexible12.655.71.53e+033.18Amager3.220.00383-0.0353  3.213.231.66e+031.69e+031.63e+03
6.6e+06 https://www.airbnb.com/rooms/6600984246       10120      Condominium10592Private room1  111FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.46e+033.17Amager3.250.00645-0.0815  3.233.261.77e+031.82e+031.72e+03
6.62e+06https://www.airbnb.com/rooms/6621330365       11500      Apartment12496Private room1  111TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.61e+033.21Amager3.270.00563-0.0657  3.263.281.87e+031.92e+031.83e+03
6.65e+06https://www.airbnb.com/rooms/6650539618       11500      Apartment2593Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.72.62e+033.42Brokvarterer3.240.003060.179   3.233.251.73e+031.76e+031.71e+03
6.66e+06https://www.airbnb.com/rooms/6656623299       100      Apartment1295Private room1  111FALSETRUENrrebrostrict_14_with_grace_period12.555.71.2e+03 3.08Brokvarterer3.250.00361-0.172   3.243.261.78e+031.8e+03 1.75e+03
6.67e+06https://www.airbnb.com/rooms/6668097372       100      Apartment4897Private room1  111FALSEFALSEFrederiksbergmoderate12.555.71.49e+033.17Brokvarterer3.240.00352-0.0668  3.233.251.74e+031.76e+031.71e+03
6.71e+06https://www.airbnb.com/rooms/6708024399       100      Apartment1494Private room1  112FALSETRUENrrebroflexible12.555.71.6e+03 3.2 Brokvarterer3.240.00305-0.0356  3.233.241.73e+031.76e+031.71e+03
6.74e+06https://www.airbnb.com/rooms/6743353385       1400      Apartment9796Private room1  112FALSETRUENrrebroflexible12.555.71.58e+033.2 Brokvarterer3.260.00425-0.0567  3.253.261.8e+03 1.84e+031.77e+03
6.76e+06https://www.airbnb.com/rooms/6755209392       2100100      Apartment11590Private room0.5113FALSETRUEsterbromoderate12.655.71.67e+033.22Brokvarterer3.290.00537-0.0647  3.283.3 1.94e+031.98e+031.89e+03
6.81e+06https://www.airbnb.com/rooms/6810924452       11000      Apartment10693Private room1  112FALSETRUENrrebromoderate12.655.71.91e+033.28Brokvarterer3.280.004450.0006593.273.291.91e+031.94e+031.87e+03
6.82e+06https://www.airbnb.com/rooms/6822153697       100      Apartment24098Private room1  102TRUETRUEFrederiksbergmoderate12.655.72.79e+033.45Brokvarterer3.340.008210.107   3.323.352.18e+032.26e+032.1e+03 
6.85e+06https://www.airbnb.com/rooms/6850687359       100      Condominium3994Private room1  112FALSETRUENrrebromoderate12.655.71.44e+033.16Brokvarterer3.280.00511-0.125   3.273.291.92e+031.96e+031.87e+03
6.88e+06https://www.airbnb.com/rooms/6875859419       100      Apartment2193Private room1  112FALSETRUEIndre Byflexible12.655.71.68e+033.22Center3.370.00397-0.146   3.363.382.34e+032.39e+032.3e+03 
6.9e+06 https://www.airbnb.com/rooms/6898141352       150100      Apartment1995Private room1  111FALSETRUEAmager stmoderate12.655.71.86e+033.27Amager3.210.004040.0639  3.2 3.211.6e+03 1.63e+031.57e+03
6.91e+06https://www.airbnb.com/rooms/6908331312       1150100      Apartment2593Private room1  112FALSETRUEBispebjergstrict_14_with_grace_period12.555.71.8e+03 3.25Nordvest3.170.004850.0864  3.163.181.47e+031.51e+031.44e+03
6.91e+06https://www.airbnb.com/rooms/6910462319       1050      Apartment10100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.48e+033.17Brokvarterer3.270.00339-0.104   3.273.281.87e+031.9e+03 1.85e+03
6.92e+06https://www.airbnb.com/rooms/6916918551       100      Apartment3296Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.2e+03 3.34Brokvarterer3.270.003270.072   3.263.281.87e+031.9e+03 1.84e+03
6.94e+06https://www.airbnb.com/rooms/6942180531       250150      Apartment21791Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.17e+033.34Brokvarterer3.270.008020.068   3.253.291.86e+031.93e+031.79e+03
6.95e+06https://www.airbnb.com/rooms/6948866452       219075      Apartment2499Private room1  112FALSETRUEValbymoderate12.555.72e+03       3.3 West3.170.0053 0.134   3.163.181.47e+031.5e+03 1.43e+03
6.95e+06https://www.airbnb.com/rooms/6954287372       2150200      Apartment1397Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.64e+033.21Brokvarterer3.270.00329-0.055   3.263.281.86e+031.89e+031.83e+03
6.97e+06https://www.airbnb.com/rooms/6972756538       100      Apartment3896Private room1  111TRUETRUEIndre Byflexible12.655.72.15e+033.33Center3.370.00477-0.0375  3.363.382.35e+032.4e+03 2.3e+03 
7.05e+06https://www.airbnb.com/rooms/7051763399       215035      Apartment10896Private room1  112TRUETRUENrrebromoderate12.555.71.75e+033.24Brokvarterer3.310.0046 -0.0716  3.3 3.322.06e+032.1e+03 2.02e+03
7.07e+06https://www.airbnb.com/rooms/7068872578       10150      Apartment6299Private room1.5111FALSETRUEsterbromoderate12.655.72.91e+033.46Brokvarterer3.270.0043 0.193   3.263.281.87e+031.9e+03 1.83e+03
7.12e+06https://www.airbnb.com/rooms/7121691392       1150100      Apartment6698Private room1  112TRUETRUEsterbroflexible12.655.72.12e+033.33Brokvarterer3.280.004090.0438  3.273.291.91e+031.95e+031.88e+03
7.14e+06https://www.airbnb.com/rooms/7139250531       10253      Apartment3992Private room1  112FALSETRUEAmager Vestmoderate12.655.73.14e+033.5 Amager3.240.003960.256   3.233.251.74e+031.77e+031.71e+03
7.14e+06https://www.airbnb.com/rooms/7140873817       11120      Apartment2093Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.63.38e+033.53Brokvarterer3.270.003260.264   3.263.271.84e+031.87e+031.81e+03
7.14e+06https://www.airbnb.com/rooms/7143090399       11000      Apartment3096Private room1  112FALSETRUEAmager stflexible12.655.71.7e+03 3.23Amager3.220.003790.0121  3.213.221.65e+031.68e+031.62e+03
7.16e+06https://www.airbnb.com/rooms/7161197425       12500      Apartment12095Private room0.5111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.95e+033.29Brokvarterer3.250.0054 0.0382  3.243.261.79e+031.83e+031.74e+03
7.2e+06 https://www.airbnb.com/rooms/7204874352       1200200      Apartment3695Private room1  112FALSETRUENrrebroflexible12.555.72.41e+033.38Brokvarterer3.240.003120.138   3.243.251.75e+031.78e+031.73e+03
7.21e+06https://www.airbnb.com/rooms/7207942352       42500      Apartment8896Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.655.71.66e+033.22Brokvarterer3.290.00455-0.0734  3.283.3 1.96e+032e+03       1.92e+03
7.24e+06https://www.airbnb.com/rooms/7241592292       2100100      Apartment3490Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.27e+033.1 Brokvarterer3.260.00333-0.161   3.263.271.84e+031.86e+031.81e+03
7.25e+06https://www.airbnb.com/rooms/7249487531       100      Apartment5996Private room1  112FALSETRUENrrebromoderate12.555.72.12e+033.33Brokvarterer3.280.0035 0.0513  3.273.281.89e+031.92e+031.86e+03
7.26e+06https://www.airbnb.com/rooms/7258234498       100      Apartment18093Private room1  122FALSETRUEAmager ststrict_14_with_grace_period12.655.71.99e+033.3 Amager3.280.007120.0146  3.273.3 1.93e+031.99e+031.87e+03
7.26e+06https://www.airbnb.com/rooms/7259278399       2100100      Apartment5196Private room1  112FALSETRUEValbystrict_14_with_grace_period12.555.71.7e+03 3.23West3.190.005510.0433  3.183.2 1.53e+031.57e+031.5e+03 
7.29e+06https://www.airbnb.com/rooms/7285771252       2200100      Apartment1090Private room1  112FALSETRUEBispebjergflexible12.555.71.21e+033.08Nordvest3.120.00454-0.0342  3.113.131.31e+031.33e+031.28e+03
7.3e+06 https://www.airbnb.com/rooms/7304999458       1400200      Apartment1191Private room1  112FALSETRUEIndre Bymoderate12.655.73.03e+033.48Center3.390.004210.0892  3.383.4 2.47e+032.52e+032.42e+03
7.34e+06https://www.airbnb.com/rooms/7336136226       1125150      Apartment1395Private room1  111TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.63e+033.21Nordvest3.160.005650.0494  3.153.171.45e+031.49e+031.42e+03
7.36e+06https://www.airbnb.com/rooms/7357665452       1500      Apartment1896Private room1.5112FALSETRUEsterbromoderate12.655.71.86e+033.27Brokvarterer3.3 0.00383-0.0264  3.293.3 1.97e+032.01e+031.94e+03
7.36e+06https://www.airbnb.com/rooms/7359510465       100      Apartment23999Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.86e+033.27Brokvarterer3.310.00869-0.0409  3.293.332.04e+032.13e+031.97e+03
7.36e+06https://www.airbnb.com/rooms/7362292598       100      Apartment9398Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.39e+033.38Brokvarterer3.280.004180.0945  3.283.291.92e+031.96e+031.89e+03
7.38e+06https://www.airbnb.com/rooms/7381830498       200      Apartment1599Private room1  112FALSETRUENrrebroflexible12.555.71.99e+033.3 Brokvarterer3.250.003150.0539  3.243.251.76e+031.78e+031.73e+03
7.38e+06https://www.airbnb.com/rooms/7383001551       2500250      Apartment2691Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.7e+03 3.43Brokvarterer3.280.003470.15    3.283.291.92e+031.95e+031.89e+03
7.42e+06https://www.airbnb.com/rooms/7415202551       13000      Apartment7396Private room1  102TRUEFALSEFrederiksbergflexible12.655.72.5e+03 3.4 Brokvarterer3.280.004140.118   3.273.291.91e+031.94e+031.87e+03
7.46e+06https://www.airbnb.com/rooms/7464417352       100      Apartment12899Private room1  111TRUETRUEsterbroflexible12.655.71.41e+033.15Brokvarterer3.260.00524-0.11    3.253.271.81e+031.86e+031.77e+03
7.49e+06https://www.airbnb.com/rooms/7487775418       2250350      Apartment3798Private room1  112TRUETRUENrrebromoderate12.555.71.92e+033.28Brokvarterer3.3 0.00406-0.0204  3.3 3.312.01e+032.05e+031.98e+03
7.5e+06 https://www.airbnb.com/rooms/7499206458       11500      Other30597Private room1  112TRUETRUEAmager Vestmoderate12.655.71.98e+033.3 Amager3.4 0.0123 -0.0982  3.373.422.48e+032.63e+032.35e+03
7.51e+06https://www.airbnb.com/rooms/7507730246       10201      Apartment1292Private room1  111TRUETRUEAmager ststrict_14_with_grace_period12.655.71.79e+033.25Amager3.250.005070.00416 3.243.261.77e+031.81e+031.73e+03
7.54e+06https://www.airbnb.com/rooms/7539097445       10149      Condominium2892Private room1  122FALSETRUEIndre Bymoderate12.655.72.38e+033.38Center3.410.0057 -0.0333  3.4 3.422.57e+032.63e+032.5e+03 
7.55e+06https://www.airbnb.com/rooms/7547266352       2150100      Condominium3994Private room1  113FALSEFALSEBispebjergmoderate12.555.71.56e+033.19Nordvest3.2 0.00621-0.00909 3.193.211.59e+031.64e+031.55e+03
7.55e+06https://www.airbnb.com/rooms/75503791.5e+03 11e+031.5e+03Apartment11100Private room1  111FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.71.3e+04 4.11Brokvarterer3.260.003710.858   3.253.261.8e+03 1.83e+031.77e+03
7.56e+06https://www.airbnb.com/rooms/7561549472       11120      Condominium1195Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.72e+03       3.3 Brokvarterer3.250.005050.0492  3.243.261.79e+031.83e+031.75e+03
7.65e+06https://www.airbnb.com/rooms/7653972246       12950      Apartment4791Private room1  111FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.71.28e+033.11Brokvarterer3.250.00371-0.143   3.243.261.78e+031.81e+031.75e+03
7.66e+06https://www.airbnb.com/rooms/7660343339       219089      Apartment1090Private room1  122FALSETRUENrrebromoderate12.555.71.55e+033.19Brokvarterer3.260.00336-0.0704  3.253.271.82e+031.85e+031.79e+03
7.67e+06https://www.airbnb.com/rooms/7668308598       10216      Apartment10499Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.73.26e+033.51Brokvarterer3.290.004470.225   3.283.3 1.94e+031.98e+031.9e+03 
7.7e+06 https://www.airbnb.com/rooms/7703939598       12000      Apartment1694Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.59e+033.41Brokvarterer3.240.003050.175   3.233.241.73e+031.76e+031.71e+03
7.72e+06https://www.airbnb.com/rooms/7721166206       10261      Townhouse1790Private room1  112FALSETRUEBispebjergmoderate12.555.71.87e+033.27Nordvest3.160.0089 0.115   3.143.171.44e+031.49e+031.38e+03
7.73e+06https://www.airbnb.com/rooms/7731521372       100      Apartment10895Private room1  111TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.49e+033.17Brokvarterer3.3 0.00485-0.123   3.293.3 1.97e+032.02e+031.93e+03
7.75e+06https://www.airbnb.com/rooms/7746152352       175100      Apartment6799Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.88e+033.27Amager3.3 0.00477-0.0278  3.293.312.01e+032.05e+031.96e+03
7.78e+06https://www.airbnb.com/rooms/7781967359       2100149      Apartment10898Private room1  112TRUEFALSEValbystrict_14_with_grace_period12.555.71.54e+033.19West3.230.00636-0.0414  3.223.241.69e+031.74e+031.64e+03
7.79e+06https://www.airbnb.com/rooms/7787746399       20100      Apartment7997Private room1  112TRUETRUEValbyflexible12.555.71.6e+03 3.2 West3.180.005890.0271  3.163.191.5e+03 1.54e+031.46e+03
7.82e+06https://www.airbnb.com/rooms/7820703598       1950      Apartment42100Private room1  111TRUETRUEIndre Byflexible12.655.72.49e+033.4 Center3.380.004790.0195  3.373.392.38e+032.43e+032.33e+03
7.83e+06https://www.airbnb.com/rooms/7829510252       10100      Apartment1193Private room1  112FALSETRUEBispebjergmoderate12.555.71.41e+033.15Nordvest3.150.004710.00134 3.143.161.4e+03 1.43e+031.37e+03
7.85e+06https://www.airbnb.com/rooms/7853704419       1035      Apartment2896Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.82e+033.26Brokvarterer3.270.00326-0.0114  3.263.281.86e+031.89e+031.84e+03
7.88e+06https://www.airbnb.com/rooms/7881239525       100      Apartment1792Private room1  112FALSETRUEFrederiksbergflexible12.555.72.1e+03 3.32Brokvarterer3.240.003060.0857  3.233.241.72e+031.75e+031.7e+03 
7.9e+06 https://www.airbnb.com/rooms/7895375312       1100150      Apartment5595Private room1  112FALSETRUENrrebromoderate12.555.71.95e+033.29Brokvarterer3.270.003440.0157  3.273.281.88e+031.91e+031.85e+03
8.02e+06https://www.airbnb.com/rooms/8019633591       20225      House20097Private room1  246TRUETRUEValbyflexible12.555.72.36e+033.37West3.4 0.00961-0.031   3.393.422.54e+032.65e+032.43e+03
8.02e+06https://www.airbnb.com/rooms/8023598452       1150250      Apartment2497Private room1  112FALSETRUENrrebroflexible12.655.72.96e+033.47Brokvarterer3.240.003090.227   3.243.251.75e+031.78e+031.73e+03
8.04e+06https://www.airbnb.com/rooms/8040088299       100      House4098Private room1  111TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.2e+03 3.08Nordvest3.190.00757-0.112   3.183.2 1.55e+031.6e+03 1.5e+03 
8.07e+06https://www.airbnb.com/rooms/8069900525       100      Apartment11597Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.1e+03 3.32Amager3.310.005330.014   3.3 3.322.03e+032.08e+031.99e+03
8.07e+06https://www.airbnb.com/rooms/8074752399       10100      Apartment15997Private room1  114TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72e+03       3.3 Brokvarterer3.410.00618-0.114   3.4 3.432.6e+03 2.67e+032.52e+03
8.12e+06https://www.airbnb.com/rooms/8122709286       12000      Other3598Private room1  111FALSEFALSEAmager Vestmoderate12.655.61.34e+033.13Amager3.290.008  -0.157   3.273.3 1.93e+032e+03       1.86e+03
8.14e+06https://www.airbnb.com/rooms/8138658399       100      Apartment11794Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.6e+03 3.2 Brokvarterer3.260.00478-0.0532  3.253.271.8e+03 1.84e+031.77e+03
8.15e+06https://www.airbnb.com/rooms/8146023319       1050      Apartment2195Private room1  112FALSETRUEsterbroflexible12.655.71.48e+033.17Brokvarterer3.240.00305-0.072   3.243.251.74e+031.77e+031.72e+03
8.16e+06https://www.airbnb.com/rooms/8155601352       11000      Apartment1296Private room1  112FALSETRUENrrebroflexible12.555.71.51e+033.18Brokvarterer3.240.00307-0.0625  3.233.251.74e+031.77e+031.72e+03
8.17e+06https://www.airbnb.com/rooms/8165026399       10100      Apartment4198Private room1  124TRUETRUENrrebroflexible12.555.72e+03       3.3 Brokvarterer3.350.00459-0.0496  3.343.362.24e+032.28e+032.19e+03
8.2e+06 https://www.airbnb.com/rooms/8199047299       10150      Townhouse1491Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.8e+03 3.25Brokvarterer3.290.00843-0.0386  3.283.311.96e+032.04e+031.89e+03
8.2e+06 https://www.airbnb.com/rooms/8199149445       11500      Apartment5390Private room1  111FALSEFALSEIndre Byflexible12.655.71.93e+033.29Center3.340.00428-0.05    3.333.342.17e+032.21e+032.12e+03
8.21e+06https://www.airbnb.com/rooms/8209968551       11750      Apartment3197Private room1  112FALSETRUEIndre Byflexible12.655.72.38e+033.38Center3.380.00402-0.0005293.373.382.38e+032.43e+032.34e+03
8.23e+06https://www.airbnb.com/rooms/8234588850       100      Apartment12798Private room1  122TRUETRUEIndre Byflexible12.655.73.4e+03 3.53Center3.420.005470.107   3.413.432.65e+032.72e+032.59e+03
8.28e+06https://www.airbnb.com/rooms/8280613551       100      Apartment10198Private room1.5122TRUETRUEAmager stflexible12.655.72.2e+03 3.34Amager3.290.005460.0551  3.283.3 1.94e+031.99e+031.89e+03
8.32e+06https://www.airbnb.com/rooms/8320240299       18080      Apartment4893Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.6e+03 3.2 Brokvarterer3.290.00354-0.0858  3.283.3 1.94e+031.98e+031.91e+03
8.36e+06https://www.airbnb.com/rooms/8357491452       1195150      Apartment7299Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.6e+03 3.42Brokvarterer3.280.003770.133   3.273.291.91e+031.95e+031.88e+03
8.37e+06https://www.airbnb.com/rooms/8368550252       100      Apartment1090Private room1  122FALSETRUEVanlseflexible12.555.71.01e+033   Nordvest3.120.00454-0.113   3.113.131.31e+031.33e+031.28e+03
8.4e+06 https://www.airbnb.com/rooms/8395049332       200      Apartment1596Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.33e+033.12Center3.420.00425-0.295   3.413.432.62e+032.67e+032.57e+03
8.42e+06https://www.airbnb.com/rooms/8419089266       145230      Condominium6196Private room2  102TRUETRUEIndre Bymoderate12.655.72.03e+033.31Center3.5 0.00727-0.195   3.493.523.18e+033.29e+033.08e+03
8.43e+06https://www.airbnb.com/rooms/8432170299       100      Apartment1292Private room1  112FALSETRUENrrebroflexible12.555.71.2e+03 3.08Brokvarterer3.240.00307-0.158   3.233.241.72e+031.74e+031.7e+03 
8.46e+06https://www.airbnb.com/rooms/8463755252       1100100      Apartment8294Private room1  121FALSETRUEsterbrostrict_14_with_grace_period12.655.71.51e+033.18Brokvarterer3.260.00418-0.0816  3.253.271.82e+031.85e+031.79e+03
8.49e+06https://www.airbnb.com/rooms/8494250186       11490      Apartment1092Private room1  112FALSETRUEIndre Bymoderate12.655.7893       2.95Center3.390.0042 -0.443   3.393.4 2.48e+032.52e+032.43e+03
8.5e+06 https://www.airbnb.com/rooms/8501658372       15050      Apartment2699Private room1.5112TRUETRUENrrebromoderate12.555.71.74e+033.24Brokvarterer3.330.00459-0.0901  3.323.342.14e+032.18e+032.09e+03
8.52e+06https://www.airbnb.com/rooms/8518289498       100      Apartment6098Private room1.5111TRUETRUENrrebroflexible12.555.71.99e+033.3 Brokvarterer3.270.0047 0.0275  3.263.281.87e+031.91e+031.83e+03
8.53e+06https://www.airbnb.com/rooms/8530285432       1114125      Apartment8296Private room1  112FALSEFALSEAmager stflexible12.655.62.34e+033.37Amager3.230.004480.143   3.223.231.68e+031.72e+031.65e+03
8.56e+06https://www.airbnb.com/rooms/8562303671       14000      Apartment3099Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.73.08e+033.49Brokvarterer3.290.003530.196   3.293.3 1.97e+032e+03       1.93e+03
8.56e+06https://www.airbnb.com/rooms/8563559578       100      Apartment14396Private room1  112TRUEFALSEIndre Byflexible12.655.72.31e+033.36Center3.420.0058 -0.0601  3.413.442.66e+032.73e+032.59e+03
8.63e+06https://www.airbnb.com/rooms/8628762352       100      Condominium5195Private room1  111FALSETRUEAmager stflexible12.655.71.41e+033.15Amager3.2 0.00564-0.0475  3.193.211.57e+031.61e+031.53e+03
8.67e+06https://www.airbnb.com/rooms/8667742399       100      Apartment2498Private room2  112FALSETRUEIndre Byflexible12.655.71.6e+03 3.2 Center3.430.00576-0.227   3.423.442.69e+032.76e+032.62e+03
8.69e+06https://www.airbnb.com/rooms/8693292339       100      House2799Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.61.36e+033.13Brokvarterer3.270.0064 -0.134   3.253.281.85e+031.9e+03 1.79e+03
8.71e+06https://www.airbnb.com/rooms/8705878332       100      Apartment3596Private room1  111TRUEFALSENrrebromoderate12.555.71.33e+033.12Brokvarterer3.270.00419-0.142   3.263.271.84e+031.88e+031.81e+03
8.75e+06https://www.airbnb.com/rooms/8747872498       160100      Apartment7194Private room1  112FALSEFALSENrrebroflexible12.655.72.45e+033.39Brokvarterer3.250.003630.141   3.243.261.77e+031.8e+03 1.74e+03
8.77e+06https://www.airbnb.com/rooms/8769969399       2150220      Apartment14094Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.75e+033.24Brokvarterer3.310.0055 -0.0637  3.3 3.322.02e+032.07e+031.97e+03
8.77e+06https://www.airbnb.com/rooms/8770563339       11500      Other32496Private room1  112TRUETRUEAmager Vestmoderate12.655.71.51e+033.18Amager3.4 0.0129 -0.219   3.373.422.5e+03 2.65e+032.36e+03
8.81e+06https://www.airbnb.com/rooms/8805154332       2100150      Apartment17997Private room1.5132TRUETRUEFrederiksbergflexible12.555.71.43e+033.15Brokvarterer3.330.00681-0.172   3.313.342.12e+032.19e+032.06e+03
8.87e+06https://www.airbnb.com/rooms/8874070345       1130125      Apartment2492Private room1  112FALSETRUEBispebjergstrict_14_with_grace_period12.555.72.01e+033.3 Nordvest3.170.004850.136   3.163.181.47e+031.5e+03 1.44e+03
8.88e+06https://www.airbnb.com/rooms/8876954598       1150100      Apartment1398Private room1  112TRUETRUEIndre Byflexible12.655.72.94e+033.47Center3.4 0.004820.0641  3.4 3.412.54e+032.59e+032.48e+03
8.88e+06https://www.airbnb.com/rooms/8883501545       20150      House9898Private room1  123TRUETRUEValbyflexible12.555.72.18e+033.34West3.240.007550.103   3.223.251.72e+031.78e+031.66e+03
8.91e+06https://www.airbnb.com/rooms/8905294751       20100      Apartment2994Private room1  133TRUETRUENrrebrostrict_14_with_grace_period12.655.73e+03       3.48Brokvarterer3.350.004380.126   3.343.362.25e+032.3e+03 2.21e+03
8.91e+06https://www.airbnb.com/rooms/8911684312       11000      Apartment2498Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.35e+033.13Brokvarterer3.240.00341-0.107   3.233.241.72e+031.75e+031.7e+03 
8.93e+06https://www.airbnb.com/rooms/8928467598       260200      Apartment3591Private room1.5102TRUETRUEIndre Byflexible12.655.72.45e+033.39Center3.430.00512-0.0362  3.423.442.67e+032.73e+032.6e+03 
8.98e+06https://www.airbnb.com/rooms/8978187498       150100      Apartment15196Private room1  112FALSEFALSEIndre Byflexible12.655.72.44e+033.39Center3.4 0.00617-0.00832 3.383.412.49e+032.56e+032.42e+03
8.98e+06https://www.airbnb.com/rooms/8984302498       100      Apartment1893Private room1  112FALSETRUEsterbromoderate12.655.71.99e+033.3 Brokvarterer3.260.003260.0344  3.263.271.84e+031.87e+031.81e+03
8.99e+06https://www.airbnb.com/rooms/8986360751       15000      Apartment8998Private room1  112TRUETRUEIndre Bymoderate12.655.73.5e+03 3.54Center3.440.004820.1     3.433.452.78e+032.84e+032.72e+03
9e+06       https://www.airbnb.com/rooms/9001456352       20100      Apartment1496Private room1  123FALSETRUENrrebroflexible12.555.71.41e+033.15Brokvarterer3.280.00331-0.129   3.273.281.89e+031.92e+031.86e+03
9e+06       https://www.airbnb.com/rooms/9003896286       1100140      Apartment17298Private room1  122TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.61.8e+03 3.26Brokvarterer3.350.0062 -0.0897  3.333.362.22e+032.28e+032.16e+03
9.01e+06https://www.airbnb.com/rooms/9006017379       11020      Apartment23298Private room1  111TRUETRUENrrebroflexible12.655.71.62e+033.21Brokvarterer3.270.00822-0.0655  3.263.291.88e+031.95e+031.81e+03
9.02e+06https://www.airbnb.com/rooms/9024879525       11490      Apartment6799Private room1  112FALSETRUEAmager Vestmoderate12.655.72.25e+033.35Amager3.250.0043 0.0975  3.253.261.8e+03 1.83e+031.76e+03
9.04e+06https://www.airbnb.com/rooms/9037095525       100      Apartment5294Private room1  112TRUETRUEAmager Vestmoderate12.655.72.1e+03 3.32Amager3.270.004590.0474  3.273.281.88e+031.92e+031.84e+03
9.05e+06https://www.airbnb.com/rooms/9054009525       10216      Apartment7699Private room1  112TRUETRUEAmager Vestflexible12.655.72.96e+033.47Amager3.260.004730.213   3.253.271.81e+031.85e+031.78e+03
9.11e+06https://www.airbnb.com/rooms/9106535399       1750      Apartment2696Private room1  112FALSEFALSEAmager Vestmoderate12.655.61.67e+033.22Amager3.240.00392-0.0206  3.243.251.75e+031.78e+031.72e+03
9.11e+06https://www.airbnb.com/rooms/9106771551       125050      Apartment11090Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.72.65e+033.42Amager3.270.005220.155   3.263.281.86e+031.9e+03 1.81e+03
9.13e+06https://www.airbnb.com/rooms/9132109272       1200100      Apartment1596Private room1  122TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.61.69e+033.23Brokvarterer3.320.00435-0.0891  3.313.332.07e+032.11e+032.03e+03
9.14e+06https://www.airbnb.com/rooms/9141811286       100      Apartment2897Private room1  111TRUETRUEAmager Veststrict_14_with_grace_period12.655.71.14e+033.06Amager3.260.00489-0.199   3.253.271.81e+031.85e+031.77e+03
9.19e+06https://www.airbnb.com/rooms/9192682525       1110190      Apartment20093Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.97e+033.47Center3.450.007540.0266  3.433.462.79e+032.89e+032.7e+03 
9.21e+06https://www.airbnb.com/rooms/9206621498       1050      Apartment1090Private room1  112FALSETRUEBispebjergflexible12.555.72.19e+033.34Nordvest3.120.004540.225   3.113.131.31e+031.33e+031.28e+03
9.25e+06https://www.airbnb.com/rooms/9253274438       12980      Apartment144100Private room1  112TRUETRUEsterbromoderate12.655.72.05e+033.31Brokvarterer3.320.00541-0.0132  3.313.342.11e+032.17e+032.06e+03
9.31e+06https://www.airbnb.com/rooms/9314963306       10200      Apartment7698Private room1  111TRUETRUEsterbroflexible12.655.72.02e+033.31Brokvarterer3.250.0043 0.0583  3.243.261.77e+031.8e+03 1.74e+03
9.34e+06https://www.airbnb.com/rooms/9337861246       1200180      House2499Private room1  112FALSEFALSEAmager Vestmoderate12.655.61.9e+03 3.28Amager3.270.006440.0136  3.253.281.85e+031.9e+03 1.79e+03
9.38e+06https://www.airbnb.com/rooms/9378415339       14000      Townhouse4193Private room1  112FALSETRUEsterbromoderate12.655.71.76e+033.24Brokvarterer3.280.00833-0.0368  3.273.3 1.91e+031.98e+031.84e+03
9.41e+06https://www.airbnb.com/rooms/9407356797       10150      Apartment1799Private room1  112FALSEFALSEAmager stmoderate12.655.73.79e+033.58Amager3.250.003980.332   3.243.251.76e+031.79e+031.73e+03
9.45e+06https://www.airbnb.com/rooms/9446839299       100      Apartment1195Private room1  112FALSETRUENrrebroflexible12.555.71.2e+03 3.08Brokvarterer3.240.00306-0.162   3.233.251.74e+031.76e+031.71e+03
9.5e+06 https://www.airbnb.com/rooms/9499979751       2150450      Apartment3599Private room1  113FALSETRUEFrederiksbergflexible12.555.73.15e+033.5 Brokvarterer3.280.003450.214   3.283.291.93e+031.96e+031.9e+03 
9.5e+06 https://www.airbnb.com/rooms/9504995352       1300150      Apartment2193Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.72.31e+033.36Brokvarterer3.280.003440.079   3.283.291.92e+031.95e+031.89e+03
9.51e+06https://www.airbnb.com/rooms/9510387272       100      Apartment4694Private room1  111FALSETRUEVanlsemoderate12.555.71.09e+033.04Nordvest3.120.0049 -0.082   3.113.131.31e+031.34e+031.29e+03
9.57e+06https://www.airbnb.com/rooms/9573456697       1150300      Apartment4395Private room1  112FALSETRUEIndre Byflexible12.655.74.14e+033.62Center3.380.004040.24    3.373.382.38e+032.42e+032.34e+03
9.59e+06https://www.airbnb.com/rooms/9591063352       130050      Apartment4696Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.91e+033.28Amager3.270.004180.0148  3.263.271.84e+031.88e+031.81e+03
9.59e+06https://www.airbnb.com/rooms/9592158458       1100150      Apartment3399Private room1  111TRUETRUEIndre Bymoderate12.655.72.53e+033.4 Center3.4 0.004860.00317 3.393.412.51e+032.57e+032.46e+03
9.63e+06https://www.airbnb.com/rooms/9625136405       2220100      Apartment16497Private room1  112TRUETRUEAmager Vestmoderate12.655.71.84e+033.26Amager3.3 0.00632-0.033   3.293.311.99e+032.04e+031.93e+03
9.68e+06https://www.airbnb.com/rooms/9682997252       101e+03      Apartment11495Private room1  111FALSEFALSEFrederiksbergmoderate12.555.75.01e+033.7 Brokvarterer3.250.004780.452   3.243.261.77e+031.81e+031.73e+03
9.7e+06 https://www.airbnb.com/rooms/9704196399       100      Apartment9696Private room1  112FALSETRUEsterbroflexible12.655.71.6e+03 3.2 Brokvarterer3.260.00423-0.0522  3.253.261.8e+03 1.83e+031.77e+03
9.71e+06https://www.airbnb.com/rooms/9711772379       1400400      Apartment2394Private room1  211TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.52e+033.55Center3.460.005690.0898  3.453.472.86e+032.93e+032.79e+03
9.77e+06https://www.airbnb.com/rooms/9766235412       100      Apartment2895Private room1  102TRUETRUEIndre Bymoderate12.655.71.65e+033.22Center3.430.00477-0.213   3.423.442.69e+032.75e+032.63e+03
9.77e+06https://www.airbnb.com/rooms/9766329518       100      Apartment28100Private room1  112TRUETRUEIndre Byflexible12.655.72.07e+033.32Center3.410.00472-0.0934  3.4 3.422.57e+032.62e+032.51e+03
9.79e+06https://www.airbnb.com/rooms/9792124372       13501e+03      Apartment2896Private room1  111FALSEFALSEFrederiksbergstrict_14_with_grace_period12.555.75.84e+033.77Brokvarterer3.250.0036 0.513   3.253.261.79e+031.82e+031.76e+03
9.82e+06https://www.airbnb.com/rooms/9823287352       150300      House15594Private room1.5346FALSETRUEAmager stflexible12.655.62.66e+033.42Amager3.520.00801-0.0916  3.5 3.533.28e+033.4e+03 3.17e+03
9.83e+06https://www.airbnb.com/rooms/9832836791       120070      Apartment11299Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.73.64e+033.56Brokvarterer3.320.004690.243   3.313.332.08e+032.13e+032.04e+03
9.85e+06https://www.airbnb.com/rooms/9849017159       1050      Apartment1094Private room1  111FALSEFALSEBispebjergflexible12.555.7836       2.92Nordvest3.090.00463-0.163   3.083.091.22e+031.24e+031.19e+03
9.88e+06https://www.airbnb.com/rooms/9877245419       1050      Apartment17096Private room1  123FALSETRUENrrebrostrict_14_with_grace_period12.555.71.88e+033.27Brokvarterer3.350.0065 -0.0762  3.343.362.24e+032.3e+03 2.17e+03
9.92e+06https://www.airbnb.com/rooms/9917282492       1150120      Apartment11099Private room1  112TRUETRUEAmager Vestmoderate12.655.62.6e+03 3.41Amager3.290.005150.123   3.283.3 1.96e+032e+03       1.91e+03
9.96e+06https://www.airbnb.com/rooms/9963567478       100      Condominium2094Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.91e+033.28Brokvarterer3.250.005040.0294  3.243.261.79e+031.83e+031.75e+03
9.97e+06https://www.airbnb.com/rooms/9967102352       1200150      Apartment9095Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.21e+033.34Brokvarterer3.250.004060.0911  3.243.261.79e+031.82e+031.76e+03
1e+07       https://www.airbnb.com/rooms/10003912272       10100      Apartment1696Private room1  112FALSETRUENrrebromoderate12.555.71.49e+033.17Brokvarterer3.270.00327-0.0959  3.263.271.86e+031.88e+031.83e+03
1e+07       https://www.airbnb.com/rooms/10038521299       280140      Apartment8692Private room1  112FALSETRUEValbyflexible12.555.61.28e+033.11West3.140.00572-0.0353  3.133.151.38e+031.42e+031.35e+03
1.01e+07https://www.airbnb.com/rooms/10062346425       12500      Apartment4196Private room1  112FALSETRUEAmager Vestflexible12.655.71.95e+033.29Amager3.220.003860.0708  3.213.231.66e+031.69e+031.63e+03
1.02e+07https://www.airbnb.com/rooms/10153993299       14050      Apartment1297Private room1  112FALSETRUEsterbroflexible12.655.71.44e+033.16Brokvarterer3.240.00309-0.0851  3.243.251.75e+031.77e+031.72e+03
1.02e+07https://www.airbnb.com/rooms/10216837299       100      House1694Private room1.5101TRUETRUEBrnshj-Husumstrict_14_with_grace_period12.555.71.2e+03 3.08West3.220.00754-0.139   3.2 3.231.65e+031.7e+03 1.59e+03
1.03e+07https://www.airbnb.com/rooms/10304147252       1400      Apartment1798Private room1  112FALSETRUEBispebjergmoderate12.555.71.05e+033.02Nordvest3.150.00475-0.134   3.153.161.43e+031.46e+031.4e+03 
1.03e+07https://www.airbnb.com/rooms/10332346352       120040      Apartment5696Private room1  112FALSETRUEIndre Bymoderate12.655.71.77e+033.25Center3.410.00423-0.159   3.4 3.422.55e+032.6e+03 2.5e+03 
1.04e+07https://www.airbnb.com/rooms/10382071598       100      Apartment4593Private room1  112FALSEFALSEAmager ststrict_14_with_grace_period12.655.72.39e+033.38Amager3.260.004160.117   3.253.271.83e+031.86e+031.79e+03
1.04e+07https://www.airbnb.com/rooms/10406326498       2250200      Apartment8199Private room1  324FALSETRUEAmager Vestmoderate12.655.72.24e+033.35Amager3.420.00546-0.069   3.413.432.63e+032.69e+032.56e+03
1.04e+07https://www.airbnb.com/rooms/10414951292       12500      Townhouse7297Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.71.42e+033.15Brokvarterer3.310.0086 -0.159   3.293.332.04e+032.13e+031.97e+03
1.04e+07https://www.airbnb.com/rooms/10435392292       12500      Condominium8997Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.71.42e+033.15Brokvarterer3.310.00571-0.162   3.3 3.322.06e+032.11e+032.01e+03
1.04e+07https://www.airbnb.com/rooms/10435787292       12500      Condominium2796Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.42e+033.15Brokvarterer3.3 0.00524-0.15    3.293.312e+03       2.05e+031.96e+03
1.05e+07https://www.airbnb.com/rooms/10487990399       100      Apartment1492Private room1  112FALSETRUEBispebjergflexible12.555.71.6e+03 3.2 Nordvest3.120.004520.0835  3.113.131.32e+031.34e+031.29e+03
1.05e+07https://www.airbnb.com/rooms/10494140724       11950      Apartment2397Private room1  112FALSEFALSEIndre Bymoderate12.655.73.09e+033.49Center3.4 0.004150.0876  3.393.412.53e+032.57e+032.48e+03
1.05e+07https://www.airbnb.com/rooms/10511101465       100      Apartment1790Private room1  112FALSETRUEIndre Byflexible12.655.71.86e+033.27Center3.370.00402-0.0959  3.363.372.32e+032.36e+032.28e+03
1.06e+07https://www.airbnb.com/rooms/10604516485       2374336      House2491Private room1  122FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.72.31e+033.36West3.190.006960.171   3.183.211.56e+031.61e+031.51e+03
1.06e+07https://www.airbnb.com/rooms/10645628352       165150      House7797Private room1  123FALSETRUEAmager Vestmoderate12.655.72.07e+033.32Amager3.310.006760.00816 3.3 3.322.03e+032.1e+03 1.97e+03
1.06e+07https://www.airbnb.com/rooms/106472391.25e+03100      Apartment5095Private room1  112FALSEFALSEIndre Byflexible12.655.75e+03       3.7 Center3.380.004090.321   3.373.392.39e+032.43e+032.34e+03
1.06e+07https://www.airbnb.com/rooms/10648645219       100      Apartment1495Private room1  112FALSEFALSEBispebjergstrict_14_with_grace_period12.555.7876       2.94Nordvest3.170.00486-0.227   3.163.181.48e+031.51e+031.44e+03
1.07e+07https://www.airbnb.com/rooms/10663931352       200      Apartment2896Private room1  112FALSETRUEAmager Vestmoderate12.655.71.41e+033.15Amager3.240.00392-0.0953  3.243.251.75e+031.78e+031.72e+03
1.07e+07https://www.airbnb.com/rooms/10735518352       20130      House20595Private room1  123FALSETRUEVanlsemoderate12.555.71.41e+033.15Nordvest3.240.00976-0.0892  3.223.261.73e+031.81e+031.65e+03
1.08e+07https://www.airbnb.com/rooms/10803557498       1150200      Apartment1293Private room1  112FALSETRUEsterbromoderate12.655.72.94e+033.47Brokvarterer3.260.003290.205   3.263.271.84e+031.86e+031.81e+03
1.08e+07https://www.airbnb.com/rooms/108202401e+03       2250250      Other28692Private room1  124FALSETRUEVesterbro-Kongens Enghaveflexible12.555.74.26e+033.63Brokvarterer3.430.0124 0.202   3.4 3.452.68e+032.83e+032.53e+03
1.08e+07https://www.airbnb.com/rooms/10830961292       11750      House4697Private room1  111TRUETRUEFrederiksbergflexible12.555.71.34e+033.13Brokvarterer3.260.00696-0.132   3.253.271.82e+031.88e+031.77e+03
1.09e+07https://www.airbnb.com/rooms/10854830551       25050      Apartment8096Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.25e+033.35Brokvarterer3.330.004320.0254  3.323.342.13e+032.17e+032.09e+03
1.1e+07 https://www.airbnb.com/rooms/10964802199       1350150      Condominium1597Private room1  122FALSETRUEVanlsestrict_14_with_grace_period12.555.71.75e+033.24Nordvest3.180.006250.0577  3.173.2 1.53e+031.57e+031.49e+03
1.1e+07 https://www.airbnb.com/rooms/11004380339       12000      Apartment17100Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.56e+033.19Brokvarterer3.290.00357-0.101   3.293.3 1.96e+031.99e+031.93e+03
1.1e+07 https://www.airbnb.com/rooms/11014124299       1200200      Apartment3794Private room1  111TRUEFALSENrrebrostrict_14_with_grace_period12.555.72.2e+03 3.34Brokvarterer3.280.004340.0599  3.273.291.91e+031.95e+031.88e+03
1.1e+07 https://www.airbnb.com/rooms/11039572286       1150150      Apartment3795Private room1.5002FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.89e+033.28Brokvarterer3.270.0046 0.00674 3.263.281.86e+031.9e+03 1.83e+03
1.12e+07https://www.airbnb.com/rooms/11159048425       135100      Apartment4195Private room1  102FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.14e+033.33Brokvarterer3.270.003310.0579  3.263.281.87e+031.9e+03 1.84e+03
1.12e+07https://www.airbnb.com/rooms/11183475551       25000      Apartment2697Private room1  123FALSEFALSEIndre Bystrict_14_with_grace_period12.655.72.7e+03 3.43Center3.460.00435-0.0257  3.453.472.87e+032.93e+032.81e+03
1.12e+07https://www.airbnb.com/rooms/11185777452       100      Apartment1997Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.71.81e+033.26Brokvarterer3.290.00347-0.0319  3.283.3 1.95e+031.98e+031.92e+03
1.12e+07https://www.airbnb.com/rooms/11246996299       10199      Apartment2596Private room1  112FALSETRUEAmager Vestflexible12.655.71.99e+033.3 Amager3.220.003770.0828  3.213.221.65e+031.67e+031.62e+03
1.12e+07https://www.airbnb.com/rooms/11247498698       100      Apartment2095Private room1  122FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.62.79e+033.45Brokvarterer3.290.003440.159   3.283.291.93e+031.97e+031.9e+03 
1.13e+07https://www.airbnb.com/rooms/11250500399       134150      Apartment5093Private room1  012FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.23e+033.35Brokvarterer3.240.004070.105   3.243.251.75e+031.79e+031.72e+03
1.13e+07https://www.airbnb.com/rooms/11285942239       12320      Apartment1193Private room1  111FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.19e+033.07Amager3.220.00425-0.145   3.213.231.66e+031.69e+031.63e+03
1.13e+07https://www.airbnb.com/rooms/11286328239       12320      Apartment1090Private room1  111FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.19e+033.07Amager3.220.0043 -0.141   3.213.221.64e+031.68e+031.61e+03
1.13e+07https://www.airbnb.com/rooms/11307997452       2150100      Apartment2291Private room1.5112FALSEFALSEVanlsemoderate12.555.71.96e+033.29Nordvest3.170.005140.119   3.163.181.49e+031.52e+031.46e+03
1.13e+07https://www.airbnb.com/rooms/11314601478       20200      Apartment14192Private room1  245FALSETRUEAmager Vestflexible12.655.61.91e+033.28Amager3.380.00642-0.103   3.373.4 2.42e+032.49e+032.35e+03
1.13e+07https://www.airbnb.com/rooms/11339117452       1350200      Apartment4398Private room1  112TRUETRUEAmager Vestmoderate12.655.72.96e+033.47Amager3.280.004570.192   3.273.291.9e+03 1.94e+031.86e+03
1.13e+07https://www.airbnb.com/rooms/11348404239       2150180      Apartment11598Private room1  112TRUETRUEFrederiksbergmoderate12.555.71.11e+033.04Brokvarterer3.320.00474-0.274   3.313.332.08e+032.12e+032.03e+03
1.14e+07https://www.airbnb.com/rooms/11394770399       1300100      Apartment1196Private room1  113FALSETRUENrrebromoderate12.655.72.3e+03 3.36Brokvarterer3.3 0.003520.0574  3.3 3.312.01e+032.04e+031.98e+03
1.14e+07https://www.airbnb.com/rooms/11437497492       100      Apartment12396Private room1  112FALSETRUEIndre Byflexible12.655.71.97e+033.29Center3.390.00542-0.0973  3.383.4 2.46e+032.52e+032.4e+03 
1.15e+07https://www.airbnb.com/rooms/11488892452       100      Apartment2499Private room1  111TRUETRUEsterbrostrict_14_with_grace_period12.655.71.81e+033.26Brokvarterer3.290.0044 -0.0289  3.283.291.93e+031.97e+031.89e+03
1.15e+07https://www.airbnb.com/rooms/11523867272       100      Apartment6299Private room1  111TRUETRUENrrebroflexible12.555.71.09e+033.04Brokvarterer3.250.00419-0.21    3.243.261.77e+031.8e+03 1.73e+03
1.17e+07https://www.airbnb.com/rooms/11670005399       100      Apartment2590Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.6e+03 3.2 West3.130.005090.0749  3.123.141.34e+031.37e+031.31e+03
1.17e+07https://www.airbnb.com/rooms/11694587299       2300100      Apartment1395Private room1  112FALSETRUENrrebromoderate12.555.71.5e+03 3.17Brokvarterer3.270.00327-0.0918  3.263.271.85e+031.88e+031.82e+03
1.17e+07https://www.airbnb.com/rooms/11713496292       14989      Apartment1096Private room1  112FALSETRUEValbystrict_14_with_grace_period12.555.61.57e+033.2 West3.180.005410.0176  3.173.191.51e+031.55e+031.47e+03
1.17e+07https://www.airbnb.com/rooms/11717384153       100      Apartment1092Private room1  112FALSETRUENrrebroflexible12.655.7612       2.79Brokvarterer3.240.00307-0.449   3.233.241.72e+031.74e+031.7e+03 
1.18e+07https://www.airbnb.com/rooms/11778686359       1055      Apartment4192Private room1  122FALSEFALSEAmager stflexible12.655.71.66e+033.22Amager3.210.003850.00507 3.213.221.64e+031.67e+031.61e+03
1.18e+07https://www.airbnb.com/rooms/11832827598       13500      Apartment2996Private room1  112TRUETRUEAmager Vestflexible12.655.72.74e+033.44Amager3.250.004540.191   3.243.261.76e+031.8e+03 1.73e+03
1.18e+07https://www.airbnb.com/rooms/11840751365       111188      Apartment8496Private room1  112TRUETRUEAmager stflexible12.655.71.92e+033.28Amager3.260.0048 0.028   3.253.271.8e+03 1.84e+031.76e+03
1.19e+07https://www.airbnb.com/rooms/11877577412       11000      Apartment9596Private room1  112TRUETRUEsterbromoderate12.655.71.75e+033.24Brokvarterer3.310.00439-0.0688  3.3 3.322.05e+032.09e+032.01e+03
1.19e+07https://www.airbnb.com/rooms/11905167598       3200200      Apartment14100Private room1  335FALSETRUEsterbroflexible12.655.72.59e+033.41Brokvarterer3.450.00441-0.0316  3.443.452.79e+032.84e+032.73e+03
1.19e+07https://www.airbnb.com/rooms/11943287452       100      Apartment11100Private room1  112FALSEFALSEIndre Bymoderate12.655.71.81e+033.26Center3.4 0.00427-0.147   3.4 3.412.54e+032.59e+032.49e+03
1.19e+07https://www.airbnb.com/rooms/11943920292       1100100      Apartment3094Private room1  112FALSEFALSEBispebjergflexible12.555.71.67e+033.22Nordvest3.120.004560.0973  3.123.131.33e+031.36e+031.31e+03
1.2e+07 https://www.airbnb.com/rooms/11952878352       2050      Apartment2195Private room1  122FALSEFALSEsterbroflexible12.655.71.41e+033.15Brokvarterer3.240.00305-0.0925  3.243.251.74e+031.77e+031.72e+03
1.2e+07 https://www.airbnb.com/rooms/11988168598       2200200      Apartment8696Private room1  112TRUEFALSENrrebromoderate12.655.72.59e+033.41Brokvarterer3.310.004270.104   3.3 3.322.04e+032.08e+032e+03       
1.2e+07 https://www.airbnb.com/rooms/12006948399       1500      Apartment12100Private room1  112FALSETRUEAmager Vestflexible12.655.71.65e+033.22Amager3.220.00386-0.0031  3.213.231.66e+031.69e+031.63e+03
1.2e+07 https://www.airbnb.com/rooms/12028968299       20100      House3793Private room0.5112FALSETRUEVanlsemoderate12.555.71.2e+03 3.08Nordvest3.140.00762-0.0663  3.133.161.39e+031.44e+031.35e+03
1.2e+07 https://www.airbnb.com/rooms/12031371299       1150100      Apartment12598Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.61.75e+033.24Brokvarterer3.320.00546-0.0767  3.313.332.08e+032.14e+032.03e+03
1.21e+07https://www.airbnb.com/rooms/12067053698       1500200      Apartment7995Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.74.09e+033.61Center3.460.004780.154   3.453.472.87e+032.93e+032.81e+03
1.21e+07https://www.airbnb.com/rooms/12091627399       1150100      Apartment14198Private room1  111TRUETRUEsterbromoderate12.655.72.15e+033.33Brokvarterer3.290.005430.0457  3.283.3 1.93e+031.98e+031.88e+03
1.21e+07https://www.airbnb.com/rooms/12148640492       2232232      Condominium8292Private room1  133FALSETRUEAmager stflexible12.655.72.2e+03 3.34Amager3.270.005980.0731  3.263.281.86e+031.91e+031.81e+03
1.22e+07https://www.airbnb.com/rooms/12160191332       100      Apartment10494Private room1  112FALSETRUEsterbroflexible12.655.71.33e+033.12Brokvarterer3.250.00442-0.131   3.253.261.79e+031.83e+031.76e+03
1.22e+07https://www.airbnb.com/rooms/12194944365       1149186      Apartment90100Private room1  112FALSETRUEIndre Byflexible12.655.72.35e+033.37Center3.390.00478-0.0193  3.383.4 2.46e+032.51e+032.41e+03
1.22e+07https://www.airbnb.com/rooms/12226772372       1129129      Apartment3096Private room1  112TRUETRUEVanlsestrict_14_with_grace_period12.555.72.13e+033.33Nordvest3.2 0.005440.126   3.193.211.59e+031.63e+031.56e+03
1.22e+07https://www.airbnb.com/rooms/12245032352       2080      Apartment1096Private room1  112FALSETRUEAmager Vestmoderate12.655.71.41e+033.15Amager3.240.00394-0.0923  3.233.251.74e+031.77e+031.71e+03
1.23e+07https://www.airbnb.com/rooms/12330515598       200      Apartment4797Private room1  112FALSETRUEIndre Bymoderate12.655.72.39e+033.38Center3.410.00418-0.0278  3.4 3.412.55e+032.6e+03 2.5e+03 
1.23e+07https://www.airbnb.com/rooms/12340792498       11000      Apartment1596Private room1  122FALSETRUEAmager stflexible12.655.72.09e+033.32Amager3.210.003750.106   3.213.221.64e+031.67e+031.61e+03
1.24e+07https://www.airbnb.com/rooms/12358255498       1150100      Apartment27799Private room1.5112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.54e+033.41Brokvarterer3.370.009680.0323  3.353.392.36e+032.47e+032.26e+03
1.24e+07https://www.airbnb.com/rooms/12375571299       1080      Apartment41100Private room1  112FALSEFALSEAmager stmoderate12.655.71.52e+033.18Amager3.250.00406-0.0707  3.243.261.78e+031.82e+031.75e+03
1.24e+07https://www.airbnb.com/rooms/12420277598       2100200      Apartment4898Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.49e+033.4 Brokvarterer3.250.003310.147   3.243.261.78e+031.8e+03 1.75e+03
1.25e+07https://www.airbnb.com/rooms/12462790452       12500      Apartment2098Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.06e+033.31Brokvarterer3.270.004070.0391  3.273.281.88e+031.92e+031.85e+03
1.25e+07https://www.airbnb.com/rooms/12487263438       100      Apartment5493Private room1  112FALSEFALSEFrederiksbergmoderate12.555.71.75e+033.24Brokvarterer3.270.00343-0.0275  3.263.281.87e+031.9e+03 1.84e+03
1.26e+07https://www.airbnb.com/rooms/12575485299       1250150      Apartment1292Private room1  121FALSETRUEVanlsemoderate12.555.72.05e+033.31Nordvest3.110.004820.201   3.1 3.121.29e+031.32e+031.26e+03
1.27e+07https://www.airbnb.com/rooms/12658283797       11500      Apartment10100Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.73.34e+033.52Brokvarterer3.250.0032 0.278   3.243.251.76e+031.79e+031.74e+03
1.27e+07https://www.airbnb.com/rooms/12719515551       2250150      Apartment5999Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.45e+033.39Brokvarterer3.280.003570.11    3.273.291.9e+03 1.94e+031.87e+03
1.27e+07https://www.airbnb.com/rooms/12734192438       1160100      Apartment3898Private room1  112TRUEFALSENrrebromoderate12.655.72.31e+033.36Brokvarterer3.3 0.004050.0597  3.3 3.312.02e+032.05e+031.98e+03
1.28e+07https://www.airbnb.com/rooms/12776104996       100      Apartment5294Private room1  112FALSEFALSEIndre Bymoderate12.655.73.98e+033.6 Center3.4 0.004190.197   3.4 3.412.53e+032.58e+032.48e+03
1.28e+07https://www.airbnb.com/rooms/12815659352       2120200      Apartment2898Private room1  123FALSEFALSEBrnshj-Husummoderate12.555.71.53e+033.18West3.2 0.0054 -0.0178  3.193.211.59e+031.63e+031.55e+03
1.28e+07https://www.airbnb.com/rooms/12831689578       1250100      Apartment3292Private room1  112FALSETRUENrrebromoderate12.555.72.96e+033.47Brokvarterer3.270.003280.206   3.263.271.84e+031.87e+031.82e+03
1.29e+07https://www.airbnb.com/rooms/12869453312       1500      Apartment3396Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.3e+03 3.11Amager3.260.00411-0.15    3.263.271.83e+031.87e+031.8e+03 
1.29e+07https://www.airbnb.com/rooms/12885262339       115050      Condominium1696Private room1  112FALSETRUEValbyflexible12.555.71.71e+033.23West3.150.006430.0852  3.133.161.4e+03 1.44e+031.36e+03
1.29e+07https://www.airbnb.com/rooms/12919829797       100      Apartment1597Private room1  112FALSETRUEIndre Byflexible12.655.73.19e+033.5 Center3.370.004030.129   3.373.382.37e+032.41e+032.32e+03
1.29e+07https://www.airbnb.com/rooms/12927740498       100      House1391Private room1  112FALSETRUEBrnshj-Husumflexible12.555.71.99e+033.3 West3.150.006690.153   3.133.161.4e+03 1.44e+031.36e+03
1.29e+07https://www.airbnb.com/rooms/12931088531       12520      Apartment1791Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.38e+033.38Brokvarterer3.280.003480.095   3.273.291.91e+031.94e+031.88e+03
1.29e+07https://www.airbnb.com/rooms/12947491591       11000      Apartment8897Private room1  112TRUEFALSEIndre Bystrict_14_with_grace_period12.655.72.46e+033.39Center3.460.00485-0.0701  3.453.472.9e+03 2.96e+032.83e+03
1.3e+07 https://www.airbnb.com/rooms/12984776478       11250      Apartment5498Private room1  112FALSETRUENrrebromoderate12.655.72.04e+033.31Brokvarterer3.280.003480.0314  3.273.281.89e+031.92e+031.87e+03
1.3e+07 https://www.airbnb.com/rooms/13011604332       1600      Apartment4596Private room1  112FALSETRUEAmager Vestflexible12.655.61.39e+033.14Amager3.220.0039 -0.0775  3.213.231.66e+031.69e+031.63e+03
1.3e+07 https://www.airbnb.com/rooms/13028543239       10120      House11691Private room1.5122FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.44e+033.16Amager3.320.00733-0.159   3.3 3.332.07e+032.14e+032.01e+03
1.31e+07https://www.airbnb.com/rooms/13077959538       12500      Apartment6999Private room1.5102TRUETRUEFrederiksbergmoderate12.555.72.4e+03 3.38Brokvarterer3.340.004580.0431  3.333.352.18e+032.22e+032.13e+03
1.31e+07https://www.airbnb.com/rooms/13086664651       220050      Apartment1395Private room1  112FALSETRUEsterbromoderate12.655.72.8e+03 3.45Brokvarterer3.270.003270.181   3.263.271.85e+031.88e+031.82e+03
1.31e+07https://www.airbnb.com/rooms/13090687452       1050      Apartment4397Private room1  112FALSETRUEAmager stmoderate12.655.72.01e+033.3 Amager3.250.004  0.055   3.243.261.77e+031.8e+03 1.74e+03
1.31e+07https://www.airbnb.com/rooms/13096414551       1050      Apartment13398Private room1  112TRUETRUEAmager Vestmoderate12.655.72.4e+03 3.38Amager3.290.005590.0871  3.283.3 1.97e+032.02e+031.92e+03
1.31e+07https://www.airbnb.com/rooms/13106453252       100      Apartment42190Private room1  112FALSETRUEBrnshj-Husummoderate12.555.71.01e+033   West3.220.0158 -0.219   3.193.251.67e+031.79e+031.55e+03
1.31e+07https://www.airbnb.com/rooms/13120964272       1200300      Apartment3598Private room1  101TRUETRUEsterbrostrict_14_with_grace_period12.655.72.49e+033.4 Brokvarterer3.290.004330.109   3.283.3 1.93e+031.97e+031.9e+03 
1.31e+07https://www.airbnb.com/rooms/13142897698       1350750      Apartment1596Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.76.14e+033.79Brokvarterer3.280.004480.508   3.273.291.91e+031.95e+031.87e+03
1.31e+07https://www.airbnb.com/rooms/13149351478       110050      Condominium1098Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.21e+033.34Brokvarterer3.280.005160.0623  3.273.291.92e+031.96e+031.87e+03
1.32e+07https://www.airbnb.com/rooms/13151978292       1150150      House6095Private room1.5111TRUETRUEVanlsemoderate12.555.71.92e+033.28Nordvest3.2 0.007460.0856  3.183.211.57e+031.63e+031.52e+03
1.32e+07https://www.airbnb.com/rooms/13242071498       210050      Apartment1795Private room1  112FALSETRUENrrebromoderate12.555.72.09e+033.32Brokvarterer3.270.003260.0532  3.263.271.85e+031.88e+031.82e+03
1.33e+07https://www.airbnb.com/rooms/13259839372       197298      Apartment1395Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.78e+033.44Brokvarterer3.240.003060.204   3.233.251.74e+031.76e+031.71e+03
1.33e+07https://www.airbnb.com/rooms/13273224372       12000      Condominium2796Private room1  112FALSETRUENrrebromoderate12.655.71.69e+033.23Brokvarterer3.280.0051 -0.0554  3.273.291.92e+031.96e+031.87e+03
1.33e+07https://www.airbnb.com/rooms/13274718412       20125      Apartment6790Private room1  122FALSETRUENrrebroflexible12.655.71.65e+033.22Brokvarterer3.240.00358-0.0255  3.243.251.75e+031.78e+031.72e+03
1.33e+07https://www.airbnb.com/rooms/13275213399       1500      Apartment1198Private room1  111FALSEFALSEsterbroflexible12.655.71.65e+033.22Brokvarterer3.210.003240.00899 3.2 3.211.61e+031.64e+031.59e+03
1.33e+07https://www.airbnb.com/rooms/13278223412       100      Apartment44100Private room1  111FALSETRUEFrederiksbergflexible12.555.71.65e+033.22Brokvarterer3.220.003450.00127 3.213.221.64e+031.67e+031.62e+03
1.33e+07https://www.airbnb.com/rooms/13279240485       13000      Condominium3798Private room1  102TRUEFALSEVesterbro-Kongens Enghaveflexible12.555.72.24e+033.35Brokvarterer3.290.0056 0.0607  3.283.3 1.95e+032e+03       1.9e+03 
1.33e+07https://www.airbnb.com/rooms/13314653359       25050      Apartment2390Private room1  113FALSETRUEAmager stmoderate12.655.71.49e+033.17Amager3.270.00411-0.0991  3.263.281.87e+031.9e+03 1.83e+03
1.33e+07https://www.airbnb.com/rooms/13336263306       12300      Apartment6898Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.45e+033.16Brokvarterer3.270.00423-0.111   3.273.281.88e+031.91e+031.84e+03
1.33e+07https://www.airbnb.com/rooms/13339186751       13000      Condominium2295Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.73.3e+03 3.52Brokvarterer3.330.0058 0.19    3.323.342.13e+032.19e+032.08e+03
1.34e+07https://www.airbnb.com/rooms/13351806897       13000      Apartment5596Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.73.89e+033.59Brokvarterer3.3 0.004040.285   3.3 3.312.02e+032.05e+031.98e+03
1.34e+07https://www.airbnb.com/rooms/13367426797       100      Apartment13097Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.73.19e+033.5 Brokvarterer3.320.005050.185   3.313.332.08e+032.13e+032.04e+03
1.34e+07https://www.airbnb.com/rooms/13368404525       30100      Apartment9798Private room1  233TRUEFALSEValbyflexible12.555.72.1e+03 3.32West3.260.006330.0605  3.253.271.83e+031.88e+031.78e+03
1.34e+07https://www.airbnb.com/rooms/13421958365       21000      Apartment12793Private room1  102FALSETRUEsterbrostrict_14_with_grace_period12.655.71.56e+033.19Brokvarterer3.3 0.00512-0.109   3.293.312.01e+032.05e+031.96e+03
1.34e+07https://www.airbnb.com/rooms/13424583306       100      Apartment4995Private room1  112FALSETRUEBispebjergflexible12.555.71.22e+033.09Nordvest3.130.00472-0.0417  3.123.141.35e+031.38e+031.32e+03
1.34e+07https://www.airbnb.com/rooms/13448150399       21330      Apartment3996Private room1  112TRUETRUENrrebromoderate12.655.71.73e+033.24Brokvarterer3.3 0.00405-0.064   3.293.312e+03       2.04e+031.97e+03
1.35e+07https://www.airbnb.com/rooms/13470008385       12200      Apartment9596Private room1  111FALSETRUENrrebrostrict_14_with_grace_period12.555.71.76e+033.25Brokvarterer3.260.00447-0.0193  3.263.271.84e+031.88e+031.8e+03 
1.35e+07https://www.airbnb.com/rooms/13493970744       2186112      Apartment7796Private room0.5112TRUETRUEIndre Byflexible12.655.73.16e+033.5 Center3.390.005260.114   3.383.4 2.43e+032.49e+032.38e+03
1.35e+07https://www.airbnb.com/rooms/13500450372       1200150      Apartment1598Private room1  121FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.29e+033.36Brokvarterer3.250.003640.106   3.253.261.79e+031.82e+031.76e+03
1.35e+07https://www.airbnb.com/rooms/13503701585       1490      Apartment2596Private room1  112FALSEFALSEIndre Bymoderate12.655.72.39e+033.38Center3.4 0.00413-0.0233  3.393.412.52e+032.57e+032.47e+03
1.35e+07https://www.airbnb.com/rooms/13526389399       13000      Apartment7497Private room1  112TRUETRUEAmager stflexible12.655.61.9e+03 3.28Amager3.260.004690.0223  3.253.261.8e+03 1.84e+031.76e+03
1.35e+07https://www.airbnb.com/rooms/13527804325       12000      Apartment23690Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.5e+03 3.18Brokvarterer3.3 0.00854-0.122   3.283.311.99e+032.06e+031.91e+03
1.35e+07https://www.airbnb.com/rooms/13544808498       11000      Apartment1897Private room1  111TRUEFALSEFrederiksbergflexible12.555.72.09e+033.32Brokvarterer3.240.004190.0838  3.233.241.72e+031.76e+031.69e+03
1.36e+07https://www.airbnb.com/rooms/13579614399       11200      Apartment3197Private room1  112FALSETRUENrrebromoderate12.555.71.72e+033.23Brokvarterer3.270.00328-0.0379  3.273.281.87e+031.9e+03 1.84e+03
1.36e+07https://www.airbnb.com/rooms/13600699299       1330      Apartment2594Private room1  112FALSEFALSEValbymoderate12.555.71.23e+033.09West3.160.00524-0.0707  3.153.171.45e+031.48e+031.41e+03
1.36e+07https://www.airbnb.com/rooms/136121161e+03       12000      Apartment2893Private room1.5122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.74.21e+033.62Brokvarterer3.310.003980.313   3.3 3.322.05e+032.09e+032.01e+03
1.36e+07https://www.airbnb.com/rooms/13618888279       12500      Apartment3598Private room1  111FALSETRUEAmager ststrict_14_with_grace_period12.655.71.37e+033.14Amager3.230.00429-0.0951  3.223.241.7e+03 1.73e+031.67e+03
1.36e+07https://www.airbnb.com/rooms/13635666399       100      Apartment1092Private room1  122FALSEFALSEVanlseflexible12.555.71.6e+03 3.2 Nordvest3.120.004520.0842  3.113.131.31e+031.34e+031.29e+03
1.36e+07https://www.airbnb.com/rooms/13639178399       1150180      Apartment5696Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.47e+033.39Brokvarterer3.210.0035 0.18    3.213.221.63e+031.66e+031.61e+03
1.37e+07https://www.airbnb.com/rooms/13650972292       100      Apartment1090Private room1  112FALSETRUEIndre Byflexible12.655.71.17e+033.07Center3.360.00405-0.297   3.363.372.31e+032.36e+032.27e+03
1.37e+07https://www.airbnb.com/rooms/13651354399       100      Apartment1098Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.6e+03 3.2 Brokvarterer3.320.00441-0.115   3.313.332.08e+032.12e+032.04e+03
1.37e+07https://www.airbnb.com/rooms/13655127332       1660      Apartment35094Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.39e+033.14Brokvarterer3.310.0127 -0.161   3.283.332.02e+032.14e+031.91e+03
1.37e+07https://www.airbnb.com/rooms/13662769352       1330      Apartment3992Private room1  112FALSETRUEValbyflexible12.555.71.44e+033.16West3.130.005140.0255  3.123.141.36e+031.39e+031.33e+03
1.37e+07https://www.airbnb.com/rooms/13662971199       2280250      Other2499Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.08e+033.03Amager3.340.00799-0.308   3.323.362.18e+032.26e+032.11e+03
1.37e+07https://www.airbnb.com/rooms/13683923412       237224      Condominium19092Private room1  112FALSETRUEValbymoderate12.555.71.68e+033.23West3.2 0.008990.0284  3.183.221.58e+031.64e+031.52e+03
1.37e+07https://www.airbnb.com/rooms/13690875352       10200      Other3598Private room1  112FALSEFALSEBrnshj-Husummoderate12.555.72.21e+033.34West3.240.0085 0.103   3.223.261.74e+031.81e+031.67e+03
1.37e+07https://www.airbnb.com/rooms/13696780339       19999      Apartment14297Private room1  112TRUETRUEValbystrict_14_with_grace_period12.555.71.85e+033.27West3.230.006920.0351  3.223.251.71e+031.76e+031.65e+03
1.37e+07https://www.airbnb.com/rooms/13710505432       1150150      Apartment4592Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.48e+033.39Brokvarterer3.250.003680.143   3.243.261.78e+031.81e+031.75e+03
1.37e+07https://www.airbnb.com/rooms/13725163292       100      Apartment19297Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.17e+033.07Brokvarterer3.270.0072 -0.205   3.263.291.87e+031.94e+031.81e+03
1.37e+07https://www.airbnb.com/rooms/13728573332       1500      Apartment1095Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.61.38e+033.14Brokvarterer3.240.00306-0.1     3.233.251.73e+031.76e+031.71e+03
1.37e+07https://www.airbnb.com/rooms/13741272299       215050      Apartment1096Private room1  112FALSETRUENrrebroflexible12.555.71.35e+033.13Brokvarterer3.240.00308-0.112   3.233.251.74e+031.76e+031.72e+03
1.37e+07https://www.airbnb.com/rooms/13744901299       20200      Apartment1795Private room1  122FALSETRUEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer3.240.00305-0.163   3.233.251.74e+031.76e+031.72e+03
1.38e+07https://www.airbnb.com/rooms/13762092498       100      Apartment3895Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.99e+033.3 Brokvarterer3.290.003470.00958 3.283.3 1.95e+031.98e+031.92e+03
1.38e+07https://www.airbnb.com/rooms/13763391312       1100200      Apartment5398Private room1  112TRUETRUEValbymoderate12.555.72.15e+033.33West3.2 0.0058 0.132   3.193.211.58e+031.63e+031.54e+03
1.38e+07https://www.airbnb.com/rooms/13778831299       100      Apartment1395Private room1  112FALSETRUEAmager stflexible12.655.71.2e+03 3.08Amager3.210.00374-0.135   3.213.221.63e+031.66e+031.61e+03
1.38e+07https://www.airbnb.com/rooms/13799505352       1200250      Condominium1596Private room1  112TRUEFALSEFrederiksbergmoderate12.555.72.61e+033.42Brokvarterer3.310.005740.106   3.3 3.322.04e+032.1e+03 1.99e+03
1.38e+07https://www.airbnb.com/rooms/13811146372       11340      Townhouse12798Private room1.5112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.62e+033.21Brokvarterer3.360.009  -0.149   3.343.382.28e+032.38e+032.19e+03
1.38e+07https://www.airbnb.com/rooms/13813273438       11000      Apartment14292Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.85e+033.27Brokvarterer3.280.00546-0.0171  3.273.3 1.93e+031.97e+031.88e+03
1.39e+07https://www.airbnb.com/rooms/13869906392       1075      Apartment8097Private room1  112TRUETRUEAmager stmoderate12.655.71.87e+033.27Amager3.280.00473-0.0121  3.273.291.92e+031.96e+031.88e+03
1.39e+07https://www.airbnb.com/rooms/13870460452       1350      Apartment1297Private room1  111FALSETRUEAmager Vestmoderate12.655.71.84e+033.27Amager3.210.004070.0589  3.2 3.211.61e+031.64e+031.58e+03
1.39e+07https://www.airbnb.com/rooms/13875834153       15035      Apartment3393Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.655.7802       2.9 Brokvarterer3.290.00345-0.382   3.283.291.93e+031.96e+031.9e+03 
1.39e+07https://www.airbnb.com/rooms/13881364531       11000      Apartment1096Private room1  111TRUEFALSENrrebromoderate12.655.72.22e+033.35Brokvarterer3.260.004390.0862  3.253.271.82e+031.86e+031.79e+03
1.39e+07https://www.airbnb.com/rooms/13890786631       11120      Apartment2793Private room1  122FALSEFALSEFrederiksbergmoderate12.555.72.64e+033.42Brokvarterer3.270.003250.154   3.263.271.85e+031.87e+031.82e+03
1.39e+07https://www.airbnb.com/rooms/13916569525       11980      Apartment14399Private room1  112FALSETRUEIndre Bymoderate12.655.72.3e+03 3.36Center3.430.00592-0.0642  3.413.442.66e+032.74e+032.59e+03
1.39e+07https://www.airbnb.com/rooms/13920288352       11500      Condominium7499Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.655.61.56e+033.19Brokvarterer3.290.00573-0.0956  3.283.3 1.94e+031.99e+031.89e+03
1.39e+07https://www.airbnb.com/rooms/13925405498       21000      Apartment1193Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.09e+033.32Brokvarterer3.240.003060.0838  3.233.241.73e+031.75e+031.7e+03 
1.4e+07 https://www.airbnb.com/rooms/13954987399       1332100      Apartment3298Private room1  122FALSETRUENrrebrostrict_14_with_grace_period12.655.72.33e+033.37Brokvarterer3.290.0035 0.0744  3.293.3 1.96e+031.99e+031.93e+03
1.4e+07 https://www.airbnb.com/rooms/13966376651       2100150      Condominium7294Private room1  124TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.7e+03 3.43Brokvarterer3.390.006030.0429  3.383.4 2.45e+032.52e+032.38e+03
1.4e+07 https://www.airbnb.com/rooms/13973655598       1200300      Apartment6597Private room1  102FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.79e+033.58Center3.430.0044 0.15    3.423.442.68e+032.74e+032.63e+03
1.4e+07 https://www.airbnb.com/rooms/13987158345       2200200      Apartment8190Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.58e+033.2 Brokvarterer3.3 0.00433-0.102   3.293.312e+03       2.04e+031.96e+03
1.4e+07 https://www.airbnb.com/rooms/13993300299       11500      Other6099Private room1  112TRUETRUEValbyflexible12.555.71.35e+033.13West3.250.00869-0.12    3.233.271.77e+031.84e+031.7e+03 
1.4e+07 https://www.airbnb.com/rooms/14017539651       100      Apartment16695Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.6e+03 3.42Brokvarterer3.270.006310.15    3.253.281.84e+031.9e+03 1.79e+03
1.41e+07https://www.airbnb.com/rooms/14061328365       1200200      Apartment6294Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.46e+033.39Brokvarterer3.270.003530.117   3.273.281.88e+031.91e+031.85e+03
1.41e+07https://www.airbnb.com/rooms/14061803485       1224186      Apartment2893Private room1  112FALSEFALSEIndre Bymoderate12.655.72.91e+033.46Center3.4 0.004120.0655  3.393.412.5e+03 2.55e+032.45e+03
1.41e+07https://www.airbnb.com/rooms/14071367498       12000      Apartment2296Private room1  223FALSETRUEAmager stmoderate12.655.72.19e+033.34Amager3.320.004220.0165  3.323.332.11e+032.15e+032.07e+03
1.41e+07https://www.airbnb.com/rooms/14080873385       1175160      Apartment8091Private room1  102FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.36e+033.37Brokvarterer3.270.003880.0991  3.273.281.87e+031.91e+031.84e+03
1.41e+07https://www.airbnb.com/rooms/14108544365       16745      Apartment2697Private room1  112FALSETRUEsterbroflexible12.655.71.71e+033.23Brokvarterer3.240.0031 -0.0124  3.243.251.76e+031.78e+031.73e+03
1.41e+07https://www.airbnb.com/rooms/14108954392       12500      Apartment1196Private room1  101FALSEFALSEVanlsemoderate12.555.71.82e+033.26Nordvest3.120.004820.144   3.113.121.3e+03 1.33e+031.28e+03
1.41e+07https://www.airbnb.com/rooms/14110830352       1200200      Apartment4198Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.41e+033.38Brokvarterer3.3 0.004040.0769  3.3 3.312.02e+032.05e+031.98e+03
1.41e+07https://www.airbnb.com/rooms/14141060299       100      Apartment1697Private room1  112FALSEFALSENrrebroflexible12.555.71.2e+03 3.08Brokvarterer3.240.00308-0.165   3.243.251.75e+031.77e+031.73e+03
1.42e+07https://www.airbnb.com/rooms/14159068452       2200150      Apartment1195Private room1  112FALSETRUENrrebromoderate12.555.72.01e+033.3 Brokvarterer3.270.003280.0364  3.263.271.85e+031.87e+031.82e+03
1.42e+07https://www.airbnb.com/rooms/14176447399       2200150      Apartment1198Private room1  113FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.8e+03 3.25Brokvarterer3.320.00372-0.0706  3.323.332.11e+032.15e+032.08e+03
1.42e+07https://www.airbnb.com/rooms/14234746266       1050      Apartment2496Private room1  112FALSEFALSEAmager Vestflexible12.655.61.26e+033.1 Amager3.220.00376-0.115   3.213.221.65e+031.67e+031.62e+03
1.42e+07https://www.airbnb.com/rooms/14243103385       100      Apartment1494Private room1  112FALSETRUENrrebromoderate12.555.71.54e+033.19Brokvarterer3.270.00327-0.078   3.263.271.84e+031.87e+031.82e+03
1.43e+07https://www.airbnb.com/rooms/14258650272       1150150      Condominium2392Private room1  112FALSETRUEVanlsemoderate12.555.71.84e+033.26Nordvest3.160.006090.104   3.153.171.45e+031.49e+031.41e+03
1.43e+07https://www.airbnb.com/rooms/14268783651       12000      Townhouse17100Private room1  112TRUETRUEAmager Vestmoderate12.655.72.8e+03 3.45Amager3.290.008670.159   3.273.311.95e+032.02e+031.87e+03
1.43e+07https://www.airbnb.com/rooms/14279864751       1147200      Apartment7598Private room1  113TRUETRUEIndre Bymoderate12.655.73.95e+033.6 Center3.480.004820.119   3.473.493.01e+033.07e+032.94e+03
1.43e+07https://www.airbnb.com/rooms/14298999551       2250350      Apartment26796Private room1  122TRUEFALSEIndre Byflexible12.655.72.45e+033.39Center3.450.00935-0.0554  3.433.462.79e+032.91e+032.67e+03
1.44e+07https://www.airbnb.com/rooms/14401476498       100      Apartment8298Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.71.99e+033.3 Brokvarterer3.310.00422-0.0125  3.3 3.322.05e+032.09e+032.01e+03
1.44e+07https://www.airbnb.com/rooms/14401781272       11000      Apartment1292Private room1  112FALSETRUEsterbromoderate12.655.71.19e+033.07Brokvarterer3.260.0033 -0.188   3.263.271.83e+031.86e+031.8e+03 
1.44e+07https://www.airbnb.com/rooms/14413587432       16666      Apartment39292Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.06e+033.31Brokvarterer3.350.0141 -0.0327  3.323.372.22e+032.36e+032.08e+03
1.45e+07https://www.airbnb.com/rooms/14460394458       100      Apartment4499Private room1  111TRUETRUEsterbrostrict_14_with_grace_period12.655.71.83e+033.26Brokvarterer3.290.00431-0.0265  3.283.3 1.95e+031.99e+031.91e+03
1.45e+07https://www.airbnb.com/rooms/14466298498       100      Apartment1698Private room1  112FALSETRUENrrebromoderate12.655.71.99e+033.3 Brokvarterer3.270.0033 0.0282  3.263.281.87e+031.89e+031.84e+03
1.45e+07https://www.airbnb.com/rooms/14502121292       100      Apartment1098Private room1  122FALSEFALSEAmager stflexible12.655.71.17e+033.07Amager3.220.0038 -0.149   3.213.221.65e+031.68e+031.62e+03
1.45e+07https://www.airbnb.com/rooms/14507458399       100      Townhouse1695Private room1  111TRUETRUEIndre Bystrict_14_with_grace_period12.655.71.6e+03 3.2 Center3.420.00909-0.22    3.413.442.65e+032.76e+032.54e+03
1.45e+07https://www.airbnb.com/rooms/14549448698       2150100      Apartment9998Private room1  123FALSEFALSEIndre Bystrict_14_with_grace_period12.655.72.94e+033.47Center3.470.00503-0.00278 3.463.482.96e+033.03e+032.89e+03
1.46e+07https://www.airbnb.com/rooms/14552618352       10350      Condominium1898Private room1  111TRUEFALSEFrederiksbergflexible12.555.72.81e+033.45Brokvarterer3.250.005770.198   3.243.261.78e+031.83e+031.73e+03
1.46e+07https://www.airbnb.com/rooms/14571146472       111058      Apartment7796Private room1  123FALSETRUEsterbromoderate12.655.72.23e+033.35Brokvarterer3.310.003980.0335  3.313.322.06e+032.1e+03 2.03e+03
1.46e+07https://www.airbnb.com/rooms/14607874399       100      Apartment31598Private room1  112TRUEFALSEFrederiksbergmoderate12.555.71.6e+03 3.2 Brokvarterer3.350.0107 -0.148   3.333.372.25e+032.36e+032.14e+03
1.46e+07https://www.airbnb.com/rooms/14643026312       100      Apartment1691Private room1  112FALSETRUEVanlseflexible12.555.71.25e+033.1 Nordvest3.120.00453-0.0224  3.113.131.31e+031.34e+031.29e+03
1.47e+07https://www.airbnb.com/rooms/146641561.1e+03 11000      Apartment20193Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.74.51e+033.65Center3.450.007570.208   3.433.462.79e+032.89e+032.7e+03 
1.47e+07https://www.airbnb.com/rooms/14712258485       10100      Apartment10799Private room1.5112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.34e+033.37Brokvarterer3.310.004980.0547  3.3 3.322.06e+032.11e+032.02e+03
1.47e+07https://www.airbnb.com/rooms/14722243551       1300500      Apartment2598Private room1  111FALSETRUEAmager Vestmoderate12.655.74.5e+03 3.65Amager3.210.004070.443   3.2 3.221.62e+031.65e+031.59e+03
1.47e+07https://www.airbnb.com/rooms/14726786498       100      Apartment3899Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.99e+033.3 Center3.390.00442-0.0912  3.383.4 2.46e+032.51e+032.41e+03
1.47e+07https://www.airbnb.com/rooms/14737946598       1200200      Apartment5196Private room1  112TRUETRUEIndre Bymoderate12.655.73.39e+033.53Center3.440.004650.0951  3.433.442.72e+032.78e+032.67e+03
1.48e+07https://www.airbnb.com/rooms/14754619412       115080      Apartment1499Private room1  112FALSETRUEsterbroflexible12.655.72.12e+033.33Brokvarterer3.250.003150.0807  3.243.251.76e+031.78e+031.73e+03
1.48e+07https://www.airbnb.com/rooms/14765243299       150100      Apartment1193Private room1  112FALSEFALSENrrebroflexible12.555.71.65e+033.22Brokvarterer3.240.00306-0.0204  3.233.241.73e+031.75e+031.7e+03 
1.48e+07https://www.airbnb.com/rooms/14779274206       1900      Apartment1196Private room1  112FALSETRUEBrnshj-Husummoderate12.555.7914       2.96West3.160.00526-0.2     3.153.171.45e+031.48e+031.41e+03
1.48e+07https://www.airbnb.com/rooms/14780231498       100      Condominium2295Private room1  122FALSEFALSEsterbroflexible12.655.71.99e+033.3 Brokvarterer3.250.005040.0456  3.243.261.79e+031.83e+031.75e+03
1.48e+07https://www.airbnb.com/rooms/14782133372       20200      Apartment2697Private room1  112FALSEFALSEsterbroflexible12.655.71.49e+033.17Brokvarterer3.240.0031 -0.072   3.243.251.76e+031.78e+031.73e+03
1.48e+07https://www.airbnb.com/rooms/14794890352       11000      Apartment1499Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.51e+033.18Brokvarterer3.250.00315-0.0668  3.243.251.76e+031.78e+031.73e+03
1.48e+07https://www.airbnb.com/rooms/14822247239       100      Apartment1098Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.6956       2.98Brokvarterer3.230.00345-0.254   3.233.241.71e+031.74e+031.69e+03
1.48e+07https://www.airbnb.com/rooms/14839250299       1254195      Apartment5797Private room1.5112FALSEFALSENrrebroflexible12.655.72.23e+033.35Brokvarterer3.280.003980.0718  3.273.281.89e+031.92e+031.86e+03
1.49e+07https://www.airbnb.com/rooms/14899205412       100      Apartment4596Private room1  123FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.65e+033.22Brokvarterer3.280.00345-0.0655  3.283.291.92e+031.95e+031.89e+03
1.49e+07https://www.airbnb.com/rooms/14911605598       12000      Apartment12697Private room1  102TRUETRUEsterbromoderate12.655.72.59e+033.41Brokvarterer3.320.004960.0957  3.313.332.08e+032.13e+032.03e+03
1.49e+07https://www.airbnb.com/rooms/14913797591       10100      Condominium2799Private room1.5112TRUETRUEIndre Bymoderate12.655.72.76e+033.44Center3.470.00642-0.0326  3.463.492.98e+033.07e+032.89e+03
1.5e+07 https://www.airbnb.com/rooms/14956541452       1200200      Apartment6597Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.81e+033.45Brokvarterer3.330.0042 0.122   3.323.332.12e+032.16e+032.08e+03
1.5e+07 https://www.airbnb.com/rooms/14961774252       175100      Other9896Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.48e+033.17Brokvarterer3.350.00821-0.178   3.333.372.24e+032.32e+032.15e+03
1.5e+07 https://www.airbnb.com/rooms/14962911226       1149134      Apartment6397Private room1  113TRUETRUEVanlsemoderate12.555.71.59e+033.2 Nordvest3.230.00546-0.0256  3.223.241.69e+031.73e+031.64e+03
1.5e+07 https://www.airbnb.com/rooms/14968304352       100      Apartment10100Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.41e+033.15Brokvarterer3.250.0032 -0.0972  3.243.251.76e+031.79e+031.74e+03
1.5e+07 https://www.airbnb.com/rooms/14968916246       1295250      Apartment2798Private room1.5111TRUETRUEAmager ststrict_14_with_grace_period12.655.72.28e+033.36Amager3.290.005320.0725  3.273.3 1.93e+031.98e+031.88e+03
1.5e+07 https://www.airbnb.com/rooms/14976273299       100      Apartment5596Private room1  111FALSETRUEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer3.210.00349-0.135   3.213.221.63e+031.66e+031.61e+03
1.5e+07 https://www.airbnb.com/rooms/15034625452       100      Apartment5699Private room1  112FALSETRUEIndre Byflexible12.655.71.81e+033.26Center3.380.00423-0.127   3.383.392.42e+032.47e+032.37e+03
1.5e+07 https://www.airbnb.com/rooms/15047956272       1200100      Apartment1398Private room1  111FALSETRUEBispebjergmoderate12.555.71.69e+033.23Nordvest3.120.004850.109   3.113.131.31e+031.34e+031.28e+03
1.51e+07https://www.airbnb.com/rooms/15118238372       11500      Apartment1795Private room1  111FALSEFALSEFrederiksbergmoderate12.555.71.64e+033.21Brokvarterer3.230.00339-0.0171  3.223.241.7e+03 1.73e+031.68e+03
1.51e+07https://www.airbnb.com/rooms/15120983392       23980      Apartment1193Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.71.61e+033.21Brokvarterer3.280.00348-0.0765  3.283.291.92e+031.95e+031.89e+03
1.51e+07https://www.airbnb.com/rooms/15141459784       1300900      Apartment1098Private room1  101FALSEFALSENrrebroflexible12.655.77.04e+033.85Brokvarterer3.210.003240.64    3.2 3.211.61e+031.64e+031.59e+03
1.51e+07https://www.airbnb.com/rooms/15142252332       15050      Apartment6396Private room1  112FALSETRUEBispebjergflexible12.555.71.58e+033.2 Nordvest3.130.004910.065   3.123.141.36e+031.39e+031.33e+03
1.52e+07https://www.airbnb.com/rooms/15191908551       13000      Apartment16394Private room1  112FALSETRUEIndre Bymoderate12.655.72.5e+03 3.4 Center3.420.00641-0.0238  3.413.432.64e+032.72e+032.57e+03
1.52e+07https://www.airbnb.com/rooms/15205440651       10100      Apartment3694Private room1.5111TRUEFALSEIndre Bymoderate12.655.73e+03       3.48Center3.420.005290.0569  3.413.432.64e+032.7e+03 2.57e+03
1.52e+07https://www.airbnb.com/rooms/15227844239       100      Apartment1595Private room1  112FALSETRUEBrnshj-Husumflexible12.555.7956       2.98West3.130.00506-0.153   3.123.141.36e+031.39e+031.33e+03
1.52e+07https://www.airbnb.com/rooms/15233650199       14075      Apartment2396Private room1  111FALSEFALSEsterbroflexible12.655.71.14e+033.06Brokvarterer3.210.0032 -0.151   3.2 3.211.61e+031.63e+031.59e+03
1.53e+07https://www.airbnb.com/rooms/15266664498       2300150      Apartment1096Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.29e+033.36Brokvarterer3.290.003490.074   3.283.291.93e+031.96e+031.9e+03 
1.53e+07https://www.airbnb.com/rooms/15272111259       2300150      Apartment1398Private room1  112FALSETRUENrrebromoderate12.555.71.34e+033.13Brokvarterer3.270.00332-0.145   3.263.281.86e+031.89e+031.84e+03
1.53e+07https://www.airbnb.com/rooms/15295995299       1300175      Apartment2996Private room1  122FALSETRUEBrnshj-Husummoderate12.555.72.2e+03 3.34West3.160.005260.178   3.153.171.46e+031.49e+031.42e+03
1.53e+07https://www.airbnb.com/rooms/15307935698       10145      Apartment1590Private room1  123FALSEFALSENrrebroflexible12.655.73.37e+033.53Brokvarterer3.270.003330.258   3.263.281.86e+031.89e+031.83e+03
1.53e+07https://www.airbnb.com/rooms/15308519352       1080      House3792Private room1  133FALSETRUEValbymoderate12.555.71.73e+033.24West3.210.006880.023   3.2 3.231.64e+031.69e+031.59e+03
1.53e+07https://www.airbnb.com/rooms/15319837319       11500      Apartment10100Private room1  112FALSETRUEsterbromoderate12.655.71.43e+033.15Brokvarterer3.270.00339-0.119   3.273.281.87e+031.9e+03 1.85e+03
1.54e+07https://www.airbnb.com/rooms/15358544498       1100100      Apartment1899Private room1  112FALSEFALSEAmager Veststrict_14_with_grace_period12.655.62.49e+033.4 Amager3.260.004160.132   3.263.271.84e+031.88e+031.81e+03
1.54e+07https://www.airbnb.com/rooms/15358672578       2250200      Apartment34100Private room1  112TRUETRUENrrebroflexible12.655.72.56e+033.41Brokvarterer3.280.004030.129   3.273.291.9e+03 1.94e+031.87e+03
1.54e+07https://www.airbnb.com/rooms/15372015452       10100      Apartment1497Private room1  112FALSETRUENrrebroflexible12.555.72.21e+033.34Brokvarterer3.240.003090.101   3.243.251.75e+031.77e+031.72e+03
1.54e+07https://www.airbnb.com/rooms/15376339498       14979      Apartment3096Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.36e+033.37Brokvarterer3.3 0.004090.0721  3.293.312e+03       2.03e+031.96e+03
1.54e+07https://www.airbnb.com/rooms/15403628419       1100100      Apartment1799Private room1  102FALSEFALSEIndre Byflexible12.655.72.18e+033.34Center3.380.00407-0.0395  3.373.392.38e+032.43e+032.34e+03
1.54e+07https://www.airbnb.com/rooms/15406430531       24646      Apartment4699Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.17e+033.34Brokvarterer3.250.003320.0858  3.243.261.78e+031.81e+031.75e+03
1.55e+07https://www.airbnb.com/rooms/15459697492       100      Apartment3097Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.71.97e+033.29Brokvarterer3.250.003120.0487  3.243.251.76e+031.78e+031.73e+03
1.55e+07https://www.airbnb.com/rooms/15478389352       10190      House4192Private room1  122FALSETRUEBrnshj-Husumflexible12.555.72.17e+033.34West3.150.006750.184   3.143.171.42e+031.46e+031.38e+03
1.55e+07https://www.airbnb.com/rooms/15530281651       100      Apartment1293Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.6e+03 3.42Brokvarterer3.280.003470.133   3.283.291.92e+031.95e+031.89e+03
1.55e+07https://www.airbnb.com/rooms/15541581266       100      Apartment1297Private room1  112FALSETRUENrrebromoderate12.655.71.06e+033.03Brokvarterer3.270.0033 -0.242   3.263.281.86e+031.89e+031.83e+03
1.56e+07https://www.airbnb.com/rooms/15562490299       10186      Apartment1196Private room1  224FALSEFALSENrrebroflexible12.655.71.94e+033.29Brokvarterer3.360.00358-0.0703  3.353.372.28e+032.32e+032.24e+03
1.56e+07https://www.airbnb.com/rooms/15629002299       11500      Apartment1798Private room1  112FALSETRUENrrebromoderate12.555.71.35e+033.13Brokvarterer3.270.0033 -0.142   3.263.281.87e+031.9e+03 1.84e+03
1.56e+07https://www.airbnb.com/rooms/15639989279       110060      Apartment8893Private room1  112FALSETRUEsterbromoderate12.655.71.46e+033.16Brokvarterer3.280.00402-0.114   3.273.281.89e+031.93e+031.86e+03
1.57e+07https://www.airbnb.com/rooms/15672465498       115035      Apartment3796Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.28e+033.36Brokvarterer3.270.003290.0862  3.273.281.87e+031.9e+03 1.84e+03
1.57e+07https://www.airbnb.com/rooms/15712130365       150100      Apartment2098Private room1  112FALSETRUEVanlsestrict_14_with_grace_period12.555.71.91e+033.28Nordvest3.170.004910.107   3.163.181.49e+031.53e+031.46e+03
1.58e+07https://www.airbnb.com/rooms/15804159259       10250      Apartment8099Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.04e+033.31Amager3.3 0.004870.00388 3.3 3.312.02e+032.06e+031.97e+03
1.58e+07https://www.airbnb.com/rooms/15810133498       1750      Apartment6796Private room1  102FALSETRUENrrebrostrict_14_with_grace_period12.655.72.07e+033.32Brokvarterer3.3 0.003790.0194  3.293.3 1.98e+032.01e+031.94e+03
1.58e+07https://www.airbnb.com/rooms/15811985591       11500      Condominium180100Private room1  112TRUETRUEAmager Vestmoderate12.655.62.51e+033.4 Amager3.320.007650.0835  3.3 3.332.07e+032.15e+032e+03       
1.58e+07https://www.airbnb.com/rooms/15840536531       100      Apartment13100Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.12e+033.33Brokvarterer3.290.003580.0352  3.283.3 1.96e+031.99e+031.93e+03
1.59e+07https://www.airbnb.com/rooms/15851020352       11600      Apartment4696Private room1  111TRUETRUEVanlsestrict_14_with_grace_period12.555.71.57e+033.2 Nordvest3.170.005530.0259  3.163.181.48e+031.51e+031.44e+03
1.59e+07https://www.airbnb.com/rooms/15862390252       11450      House12399Private room1  112TRUETRUEAmager Vestmoderate12.655.71.15e+033.06Amager3.310.00739-0.251   3.3 3.332.05e+032.12e+031.99e+03
1.59e+07https://www.airbnb.com/rooms/15864315352       12000      Apartment5097Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.61e+033.21Brokvarterer3.210.00343-0.00649 3.213.221.63e+031.66e+031.61e+03
1.59e+07https://www.airbnb.com/rooms/15865253651       11950      Apartment1298Private room1  112FALSETRUENrrebromoderate12.555.72.8e+03 3.45Brokvarterer3.270.003320.177   3.263.281.86e+031.89e+031.84e+03
1.59e+07https://www.airbnb.com/rooms/15865259352       11450      House2498Private room1  112TRUETRUEAmager Vestmoderate12.655.71.55e+033.19Amager3.290.00689-0.103   3.283.311.97e+032.03e+031.91e+03
1.61e+07https://www.airbnb.com/rooms/16057794399       150150      Apartment1599Private room1  112FALSETRUEIndre Bymoderate12.655.72.25e+033.35Center3.4 0.00422-0.0523  3.4 3.412.53e+032.58e+032.49e+03
1.61e+07https://www.airbnb.com/rooms/16059577452       100      Apartment5595Private room1  112FALSEFALSEAmager Vestmoderate12.655.71.81e+033.26Amager3.250.004090.00998 3.243.261.77e+031.8e+03 1.73e+03
1.61e+07https://www.airbnb.com/rooms/16095589385       225050      House12197Private room1  122TRUETRUEBrnshj-Husummoderate12.555.71.79e+033.25West3.230.007770.0239  3.213.241.69e+031.75e+031.64e+03
1.61e+07https://www.airbnb.com/rooms/16122603399       1100100      Apartment6799Private room2  122TRUETRUEsterbroflexible12.655.72.1e+03 3.32Brokvarterer3.340.00588-0.0154  3.333.352.17e+032.23e+032.11e+03
1.61e+07https://www.airbnb.com/rooms/16122980498       11000      Other1094Private room1  111FALSETRUEFrederiksbergflexible12.555.72.09e+033.32Brokvarterer3.280.007740.0451  3.263.291.89e+031.95e+031.82e+03
1.61e+07https://www.airbnb.com/rooms/16127015352       11500      Apartment5199Private room1  112TRUETRUENrrebroflexible12.555.71.56e+033.19Brokvarterer3.280.00401-0.0883  3.273.291.91e+031.94e+031.88e+03
1.61e+07https://www.airbnb.com/rooms/16128152445       2200200      Apartment1497Private room1  222FALSEFALSENrrebrostrict_14_with_grace_period12.655.71.98e+033.3 Brokvarterer3.330.00399-0.037   3.333.342.16e+032.2e+03 2.12e+03
1.62e+07https://www.airbnb.com/rooms/16167492352       100      Apartment1093Private room1  113FALSETRUEFrederiksbergflexible12.555.71.41e+033.15Brokvarterer3.270.0033 -0.124   3.273.281.87e+031.9e+03 1.85e+03
1.62e+07https://www.airbnb.com/rooms/16214867797       1250100      Apartment12100Private room1.5112FALSETRUEsterbroflexible12.655.73.84e+033.58Brokvarterer3.270.003780.311   3.273.281.87e+031.91e+031.84e+03
1.62e+07https://www.airbnb.com/rooms/16248647551       134100      Apartment2099Private room1  112TRUEFALSENrrebromoderate12.555.72.64e+033.42Brokvarterer3.3 0.004180.119   3.293.312.01e+032.05e+031.97e+03
1.62e+07https://www.airbnb.com/rooms/16249848232       1050      Apartment9590Private room1  112FALSEFALSEBispebjergflexible12.555.71.13e+033.05Nordvest3.130.00544-0.0784  3.123.141.35e+031.38e+031.32e+03
1.63e+07https://www.airbnb.com/rooms/16255960671       100      Apartment1090Private room1  112FALSEFALSEIndre Byflexible12.655.72.68e+033.43Center3.360.004050.0646  3.363.372.31e+032.36e+032.27e+03
1.63e+07https://www.airbnb.com/rooms/16280204498       12000      Apartment1093Private room1  124FALSETRUEsterbroflexible12.655.72.19e+033.34Brokvarterer3.310.003850.0324  3.3 3.322.03e+032.07e+032e+03       
1.63e+07https://www.airbnb.com/rooms/16292698299       100      Apartment1893Private room1  111FALSEFALSEFrederiksbergmoderate12.655.71.2e+03 3.08Brokvarterer3.230.0034 -0.151   3.223.241.69e+031.72e+031.67e+03
1.63e+07https://www.airbnb.com/rooms/16297719365       43500      Apartment1795Private room1  112FALSETRUEsterbromoderate12.655.71.81e+033.26Brokvarterer3.270.00326-0.00969 3.263.271.85e+031.88e+031.82e+03
1.63e+07https://www.airbnb.com/rooms/16299882352       15050      Apartment2095Private room1  112FALSETRUEFrederiksbergflexible12.555.71.66e+033.22Brokvarterer3.240.00305-0.0214  3.233.251.74e+031.77e+031.72e+03
1.63e+07https://www.airbnb.com/rooms/16328654299       10200      Condominium2195Private room2  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.72e+03       3.3 Center3.510.00743-0.213   3.5 3.533.26e+033.37e+033.15e+03
1.63e+07https://www.airbnb.com/rooms/16347825332       110060      Apartment7695Private room1  123TRUETRUEValbystrict_14_with_grace_period12.555.71.67e+033.22West3.250.00607-0.0322  3.243.271.8e+03 1.85e+031.75e+03
1.64e+07https://www.airbnb.com/rooms/16361142299       100      Apartment1297Private room1  112FALSETRUENrrebromoderate12.655.71.2e+03 3.08Brokvarterer3.270.0033 -0.191   3.263.281.86e+031.89e+031.83e+03
1.64e+07https://www.airbnb.com/rooms/16378183452       1500      Apartment8597Private room1  112TRUETRUEAmager Vestflexible12.655.71.86e+033.27Amager3.260.004810.0116  3.253.271.81e+031.85e+031.77e+03
1.65e+07https://www.airbnb.com/rooms/16452321399       21000      Apartment5396Private room1.5112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.7e+03 3.23Brokvarterer3.350.00462-0.12    3.343.362.24e+032.28e+032.19e+03
1.65e+07https://www.airbnb.com/rooms/16501554412       1750      Apartment1596Private room1  112FALSETRUEAmager stmoderate12.655.71.72e+033.24Amager3.240.00392-0.00543 3.233.251.74e+031.78e+031.71e+03
1.65e+07https://www.airbnb.com/rooms/16503879352       100      Apartment7890Private room1  111FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.41e+033.15Brokvarterer3.250.00415-0.105   3.253.261.79e+031.83e+031.76e+03
1.65e+07https://www.airbnb.com/rooms/16504907299       110035      Apartment1397Private room1  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.44e+033.16Brokvarterer3.290.00349-0.131   3.283.291.94e+031.97e+031.91e+03
1.65e+07https://www.airbnb.com/rooms/16532377399       1035      Apartment1595Private room1  112FALSETRUENrrebroflexible12.555.71.74e+033.24Brokvarterer3.240.00305-0.0005633.233.251.74e+031.76e+031.71e+03
1.66e+07https://www.airbnb.com/rooms/16582945345       2200200      Apartment1596Private room1  124FALSETRUEIndre Byflexible12.655.71.58e+033.2 Center3.440.00458-0.246   3.443.452.78e+032.84e+032.73e+03
1.66e+07https://www.airbnb.com/rooms/16614115166       1100150      Apartment2699Private room1  122FALSETRUEBrnshj-Husumflexible12.555.71.36e+033.13West3.140.00515-0.00526 3.133.151.38e+031.41e+031.35e+03
1.66e+07https://www.airbnb.com/rooms/16614696199       1250250      Other1597Private room1  112FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.72.05e+033.31West3.250.008590.0562  3.243.271.8e+03 1.87e+031.73e+03
1.67e+07https://www.airbnb.com/rooms/16651793259       12000      Apartment12394Private room1  111FALSETRUEIndre Byflexible12.655.71.24e+033.09Center3.350.00552-0.261   3.343.362.25e+032.31e+032.2e+03 
1.67e+07https://www.airbnb.com/rooms/16668759498       12000      Apartment17100Private room1  112FALSETRUEAmager Vestflexible12.655.72.19e+033.34Amager3.220.003860.12    3.213.231.66e+031.69e+031.63e+03
1.67e+07https://www.airbnb.com/rooms/16669425598       13000      Apartment1698Private room1  112FALSEFALSEsterbrostrict_14_with_grace_period12.655.72.69e+033.43Brokvarterer3.290.003510.14    3.283.3 1.95e+031.98e+031.92e+03
1.67e+07https://www.airbnb.com/rooms/16683318372       1750      Apartment5698Private room2  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.61.56e+033.19Brokvarterer3.330.00544-0.137   3.323.342.14e+032.2e+03 2.09e+03
1.67e+07https://www.airbnb.com/rooms/16685297651       1070      Apartment3097Private room1  112TRUETRUEAmager stmoderate12.655.72.88e+033.46Amager3.270.004610.185   3.273.281.88e+031.92e+031.84e+03
1.67e+07https://www.airbnb.com/rooms/16738987399       20100      Apartment19100Private room1  112FALSEFALSEAmager stmoderate12.655.71.6e+03 3.2 Amager3.250.004  -0.0446  3.243.261.77e+031.8e+03 1.74e+03
1.68e+07https://www.airbnb.com/rooms/16750323551       11000      Apartment2798Private room1.5112FALSETRUEFrederiksbergmoderate12.555.72.3e+03 3.36Brokvarterer3.3 0.003850.0629  3.293.311.99e+032.03e+031.96e+03
1.68e+07https://www.airbnb.com/rooms/16753177399       100      House1596Private room1  112FALSETRUEAmager Vestmoderate12.655.71.6e+03 3.2 Amager3.260.00641-0.0576  3.253.271.82e+031.88e+031.77e+03
1.68e+07https://www.airbnb.com/rooms/16773592458       100      Apartment2396Private room1  122FALSETRUENrrebroflexible12.555.71.83e+033.26Brokvarterer3.240.003070.0201  3.243.251.75e+031.77e+031.72e+03
1.68e+07https://www.airbnb.com/rooms/16787302498       100      Apartment2698Private room1  112FALSETRUEIndre Bymoderate12.655.71.99e+033.3 Center3.4 0.00416-0.105   3.4 3.412.54e+032.58e+032.49e+03
1.68e+07https://www.airbnb.com/rooms/16787456485       20134      Apartment3292Private room1  112FALSETRUENrrebroflexible12.655.71.94e+033.29Brokvarterer3.240.0031 0.0487  3.233.251.73e+031.76e+031.71e+03
1.68e+07https://www.airbnb.com/rooms/16790616525       227575      Apartment1495Private room1  113FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.38e+033.38Brokvarterer3.3 0.003490.0729  3.3 3.312.01e+032.04e+031.98e+03
1.68e+07https://www.airbnb.com/rooms/16800953292       1600250      Townhouse3194Private room1  111TRUETRUEVanlseflexible12.555.72.77e+033.44Nordvest3.130.009250.311   3.113.151.35e+031.41e+031.3e+03 
1.68e+07https://www.airbnb.com/rooms/16809364452       1200300      Apartment8593Private room1  112FALSETRUEAmager Vestmoderate12.655.73.21e+033.51Amager3.250.004540.257   3.243.261.78e+031.81e+031.74e+03
1.69e+07https://www.airbnb.com/rooms/16875751252       175225      House2293Private room1  122FALSETRUEVanlsemoderate12.555.71.98e+033.3 Nordvest3.170.0069 0.129   3.153.181.47e+031.52e+031.43e+03
1.69e+07https://www.airbnb.com/rooms/16907209698       10100      Apartment1592Private room1  112FALSETRUENrrebroflexible12.655.73.19e+033.5 Brokvarterer3.240.003060.268   3.233.241.72e+031.75e+031.7e+03 
1.69e+07https://www.airbnb.com/rooms/16944653498       112560      Condominium16299Private room1  112TRUETRUEAmager Vestflexible12.655.72.36e+033.37Amager3.290.007390.0868  3.273.3 1.93e+032e+03       1.87e+03
1.7e+07 https://www.airbnb.com/rooms/16971170531       100      Apartment1493Private room1  012FALSETRUEIndre Byflexible12.655.72.12e+033.33Center3.320.004440.00384 3.313.332.11e+032.15e+032.06e+03
1.7e+07 https://www.airbnb.com/rooms/16991100392       100      Apartment1592Private room0.5111FALSETRUEIndre Byflexible12.655.71.57e+033.2 Center3.310.00468-0.11    3.3 3.312.02e+032.06e+031.98e+03
1.7e+07 https://www.airbnb.com/rooms/17009290578       2100450      Apartment11397Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.41e+033.38Brokvarterer3.330.0048 0.0479  3.333.342.16e+032.21e+032.11e+03
1.7e+07 https://www.airbnb.com/rooms/17033458246       1990      Apartment1093Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.08e+033.03Brokvarterer3.240.00306-0.202   3.233.241.72e+031.75e+031.7e+03 
1.71e+07https://www.airbnb.com/rooms/17116318352       190130      Apartment7393Private room1  111FALSETRUEBispebjergmoderate12.555.72.02e+033.3 Nordvest3.120.0052 0.183   3.113.131.32e+031.36e+031.29e+03
1.71e+07https://www.airbnb.com/rooms/17135790399       200      Apartment2799Private room1  112FALSETRUENrrebroflexible12.555.71.6e+03 3.2 Brokvarterer3.250.00317-0.0444  3.243.251.77e+031.79e+031.74e+03
1.72e+07https://www.airbnb.com/rooms/17165115558       200      Apartment1796Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.23e+033.35Brokvarterer3.3 0.0042 0.0506  3.293.311.99e+032.02e+031.95e+03
1.72e+07https://www.airbnb.com/rooms/17166000332       1175250      Apartment3093Private room2  225FALSEFALSENrrebroflexible12.655.72.5e+03 3.4 Brokvarterer3.450.00531-0.048   3.443.462.8e+03 2.86e+032.73e+03
1.72e+07https://www.airbnb.com/rooms/17184069299       1100100      Apartment1296Private room1  111FALSETRUEValbymoderate12.555.71.7e+03 3.23West3.120.005360.105   3.113.141.33e+031.37e+031.3e+03 
1.72e+07https://www.airbnb.com/rooms/17215697326       150200      Apartment7296Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.15e+033.33Brokvarterer3.280.003710.0552  3.273.291.9e+03 1.93e+031.87e+03
1.73e+07https://www.airbnb.com/rooms/17313722751       250200      Apartment36096Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.655.73.05e+033.48Brokvarterer3.360.0123 0.128   3.333.382.27e+032.4e+03 2.15e+03
1.73e+07https://www.airbnb.com/rooms/17335206392       20125      Apartment4798Private room1  113TRUEFALSEVanlsemoderate12.555.71.57e+033.2 Nordvest3.230.00543-0.0299  3.213.241.68e+031.72e+031.64e+03
1.73e+07https://www.airbnb.com/rooms/17340635359       1500      Apartment1591Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.49e+033.17Brokvarterer3.260.00331-0.0898  3.263.271.83e+031.85e+031.8e+03 
1.74e+07https://www.airbnb.com/rooms/17352894432       100      House1092Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.61.73e+033.24Amager3.270.00657-0.0358  3.263.291.88e+031.93e+031.82e+03
1.74e+07https://www.airbnb.com/rooms/17365223498       12000      Apartment1496Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.19e+033.34Brokvarterer3.240.003070.0996  3.243.251.74e+031.77e+031.72e+03
1.74e+07https://www.airbnb.com/rooms/17373122299       100      Apartment1090Private room1  112FALSEFALSEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer3.230.00311-0.155   3.233.241.71e+031.73e+031.69e+03
1.74e+07https://www.airbnb.com/rooms/17394882797       100      House3296Private room1  112FALSETRUEIndre Byflexible12.655.73.19e+033.5 Center3.390.006880.109   3.383.412.48e+032.56e+032.41e+03
1.74e+07https://www.airbnb.com/rooms/17419481399       249200      Apartment21100Private room2  112FALSETRUEAmager stmoderate12.655.71.64e+033.22Amager3.3 0.00575-0.085   3.293.312e+03       2.05e+031.95e+03
1.75e+07https://www.airbnb.com/rooms/17469632352       100      Apartment1497Private room1  112FALSETRUEBispebjergflexible12.555.71.41e+033.15Nordvest3.130.004570.0225  3.123.141.34e+031.36e+031.31e+03
1.75e+07https://www.airbnb.com/rooms/17470233731       20300      Apartment3498Private room1  244TRUETRUENrrebroflexible12.655.72.92e+033.47Brokvarterer3.390.004390.072   3.393.4 2.48e+032.53e+032.43e+03
1.75e+07https://www.airbnb.com/rooms/17484651372       11000      Apartment2590Private room1  112FALSETRUEsterbroflexible12.655.71.59e+033.2 Brokvarterer3.240.00311-0.0344  3.233.241.72e+031.74e+031.7e+03 
1.75e+07https://www.airbnb.com/rooms/17493273399       255200      Apartment5295Private room1  112FALSETRUEFrederiksbergflexible12.555.71.65e+033.22Brokvarterer3.250.0033 -0.0287  3.243.251.76e+031.79e+031.74e+03
1.75e+07https://www.airbnb.com/rooms/17509177352       100      Apartment3095Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.41e+033.15Brokvarterer3.240.00308-0.0941  3.243.251.75e+031.77e+031.72e+03
1.75e+07https://www.airbnb.com/rooms/17510665352       2225175      Apartment6696Private room1  123FALSETRUENrrebromoderate12.655.71.63e+033.21Brokvarterer3.310.00379-0.1     3.313.322.06e+032.09e+032.02e+03
1.75e+07https://www.airbnb.com/rooms/17513955598       100      Apartment4195Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.39e+033.38Brokvarterer3.270.003980.105   3.273.281.88e+031.91e+031.85e+03
1.75e+07https://www.airbnb.com/rooms/17524864359       1350      Apartment14100Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.47e+033.17Brokvarterer3.250.00319-0.0789  3.243.251.76e+031.79e+031.74e+03
1.75e+07https://www.airbnb.com/rooms/17534970199       100      Apartment1694Private room1  111FALSETRUENrrebroflexible12.555.7796       2.9 Brokvarterer3.2 0.00318-0.302   3.2 3.211.6e+03 1.62e+031.57e+03
1.76e+07https://www.airbnb.com/rooms/17587722312       11420      Apartment1995Private room1  112FALSEFALSEAmager stflexible12.655.71.39e+033.14Amager3.210.00374-0.0712  3.213.221.64e+031.67e+031.61e+03
1.76e+07https://www.airbnb.com/rooms/17600961737       22170      Apartment2298Private room1  111TRUETRUEIndre Bymoderate12.655.73.16e+033.5 Center3.4 0.004940.103   3.393.412.5e+03 2.55e+032.44e+03
1.76e+07https://www.airbnb.com/rooms/17607462399       100      Apartment3099Private room1  111FALSETRUENrrebromoderate12.555.71.6e+03 3.2 Brokvarterer3.240.00345-0.0359  3.233.251.73e+031.76e+031.71e+03
1.76e+07https://www.airbnb.com/rooms/17616662299       1350      Apartment12100Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.23e+033.09Brokvarterer3.210.0033 -0.12    3.2 3.221.62e+031.65e+031.6e+03 
1.76e+07https://www.airbnb.com/rooms/17621434399       11000      Apartment10100Private room1  112FALSEFALSEIndre Byflexible12.655.71.7e+03 3.23Center3.380.00413-0.148   3.373.392.38e+032.43e+032.34e+03
1.76e+07https://www.airbnb.com/rooms/17637436372       11000      Apartment26100Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.59e+033.2 Brokvarterer3.250.00321-0.0477  3.243.251.77e+031.8e+03 1.75e+03
1.77e+07https://www.airbnb.com/rooms/17650592299       1500      Apartment3197Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.25e+033.1 Brokvarterer3.290.00347-0.196   3.283.3 1.95e+031.99e+031.92e+03
1.77e+07https://www.airbnb.com/rooms/17665882797       1199198      Townhouse1596Private room1  123TRUETRUEIndre Bymoderate12.655.74.18e+033.62Center3.480.009010.143   3.463.5 3e+03       3.13e+032.88e+03
1.77e+07https://www.airbnb.com/rooms/17676460478       20200      House16299Private room1  123TRUETRUEVanlsemoderate12.555.71.91e+033.28Nordvest3.270.008570.0164  3.253.281.84e+031.91e+031.77e+03
1.77e+07https://www.airbnb.com/rooms/17687898272       2120350      Apartment11100Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.21e+033.08Brokvarterer3.320.00442-0.239   3.313.332.09e+032.14e+032.05e+03
1.77e+07https://www.airbnb.com/rooms/17705204498       100      Other4399Private room1  112FALSETRUEValbymoderate12.555.71.99e+033.3 West3.240.008530.056   3.233.261.75e+031.82e+031.68e+03
1.77e+07https://www.airbnb.com/rooms/17725947498       12500      Apartment12499Private room1  122TRUETRUEAmager stmoderate12.655.72.24e+033.35Amager3.290.005410.057   3.283.3 1.97e+032.01e+031.92e+03
1.78e+07https://www.airbnb.com/rooms/17762371498       11000      Apartment6497Private room1  122TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.09e+033.32Brokvarterer3.280.004060.0401  3.273.291.91e+031.94e+031.87e+03
1.78e+07https://www.airbnb.com/rooms/17803617259       120075      Condominium2899Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.54e+033.19Amager3.280.00566-0.0926  3.273.291.9e+03 1.95e+031.85e+03
1.78e+07https://www.airbnb.com/rooms/17805545498       150100      Condominium3297Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.62.44e+033.39Brokvarterer3.280.0051 0.103   3.273.291.93e+031.97e+031.88e+03
1.78e+07https://www.airbnb.com/rooms/17827410352       235200      Apartment4996Private room1  122TRUETRUEBispebjergflexible12.555.71.44e+033.16Nordvest3.160.00524-0.0009043.153.171.45e+031.48e+031.41e+03
1.79e+07https://www.airbnb.com/rooms/17853510445       12800      Apartment7697Private room1  122FALSETRUENrrebroflexible12.555.72.06e+033.31Brokvarterer3.250.003770.0607  3.253.261.79e+031.82e+031.76e+03
1.79e+07https://www.airbnb.com/rooms/17856993399       11000      Apartment2297Private room1  112FALSEFALSEAmager stmoderate12.655.71.7e+03 3.23Amager3.240.00393-0.0148  3.243.251.75e+031.79e+031.72e+03
1.79e+07https://www.airbnb.com/rooms/178775601.15e+03200      Other2695Private room1  122FALSETRUEAmager stflexible12.655.74.6e+03 3.66Amager3.290.0078 0.374   3.273.3 1.94e+032.01e+031.88e+03
1.79e+07https://www.airbnb.com/rooms/17883381538       100      Townhouse11498Private room0  112TRUETRUEIndre Bymoderate12.655.72.15e+033.33Center3.410.0108 -0.0752  3.393.432.56e+032.69e+032.44e+03
1.79e+07https://www.airbnb.com/rooms/17891532299       100      Apartment21100Private room1  112FALSEFALSEAmager Vestmoderate12.655.71.2e+03 3.08Amager3.250.004  -0.17    3.243.261.77e+031.8e+03 1.74e+03
1.79e+07https://www.airbnb.com/rooms/17905527233       100      Apartment1499Private room1.5112TRUETRUEBispebjergstrict_14_with_grace_period12.555.7932       2.97Nordvest3.230.0059 -0.261   3.223.241.7e+03 1.75e+031.66e+03
1.79e+07https://www.airbnb.com/rooms/17931706286       1250295      Apartment4492Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.72.57e+033.41Brokvarterer3.290.003520.124   3.283.291.94e+031.97e+031.91e+03
1.79e+07https://www.airbnb.com/rooms/17938126299       11000      Apartment2498Private room1  112FALSETRUEBispebjergmoderate12.555.71.3e+03 3.11Nordvest3.160.00475-0.0434  3.153.171.43e+031.46e+031.4e+03 
1.79e+07https://www.airbnb.com/rooms/17941225199       100      Apartment2691Private room1  111FALSEFALSEIndre Byflexible12.655.7796       2.9 Center3.330.00413-0.431   3.323.342.15e+032.19e+032.11e+03
1.79e+07https://www.airbnb.com/rooms/17942075352       100      Apartment4797Private room1  112TRUEFALSEBispebjergstrict_14_with_grace_period12.555.71.41e+033.15Nordvest3.210.00542-0.0582  3.2 3.221.61e+031.65e+031.57e+03
1.79e+07https://www.airbnb.com/rooms/17948420598       1500100      Apartment1091Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.73.29e+033.52Amager3.250.004140.264   3.243.261.79e+031.82e+031.76e+03
1.8e+07 https://www.airbnb.com/rooms/17960155312       1900      Apartment1595Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.555.71.34e+033.13Brokvarterer3.290.00346-0.159   3.283.291.93e+031.96e+031.9e+03 
1.8e+07 https://www.airbnb.com/rooms/17967030498       100      Apartment10100Private room1  122FALSETRUEsterbrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer3.290.0036 0.0078  3.283.3 1.96e+031.99e+031.93e+03
1.8e+07 https://www.airbnb.com/rooms/17974503372       11000      Apartment4095Private room1  112TRUEFALSEFrederiksbergmoderate12.655.71.59e+033.2 Brokvarterer3.3 0.00405-0.0999  3.293.312e+03       2.04e+031.96e+03
1.8e+07 https://www.airbnb.com/rooms/18003260452       21500      Condominium8393Private room1  112FALSETRUEIndre Byflexible12.655.71.96e+033.29Center3.390.00599-0.101   3.383.4 2.47e+032.54e+032.41e+03
1.8e+07 https://www.airbnb.com/rooms/18013013352       20300      Apartment3594Private room1  112FALSETRUEFrederiksbergflexible12.655.71.41e+033.15Brokvarterer3.240.00311-0.0936  3.243.251.75e+031.77e+031.72e+03
1.8e+07 https://www.airbnb.com/rooms/18014316399       150150      Apartment6797Private room1  112FALSETRUEAmager Vestmoderate12.655.62.25e+033.35Amager3.250.004260.0995  3.243.261.79e+031.82e+031.75e+03
1.8e+07 https://www.airbnb.com/rooms/18037149299       100      Apartment4299Private room1  111TRUETRUEVanlsestrict_14_with_grace_period12.555.71.2e+03 3.08Nordvest3.170.00555-0.0949  3.163.181.49e+031.53e+031.45e+03
1.81e+07https://www.airbnb.com/rooms/18085359345       11200      Apartment8993Private room1  112FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.5e+03 3.18Nordvest3.180.00547-0.00322 3.173.191.51e+031.55e+031.47e+03
1.81e+07https://www.airbnb.com/rooms/18086205306       100      Apartment2897Private room1  111FALSEFALSEsterbroflexible12.655.71.22e+033.09Brokvarterer3.210.00323-0.121   3.2 3.221.62e+031.64e+031.59e+03
1.81e+07https://www.airbnb.com/rooms/18086469279       112050      Apartment6591Private room1  111FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.44e+033.16Nordvest3.140.005250.0205  3.133.151.37e+031.4e+03 1.34e+03
1.81e+07https://www.airbnb.com/rooms/18107820498       11500      Apartment3497Private room1  112FALSETRUEIndre Byflexible12.655.72.14e+033.33Center3.380.00402-0.0466  3.373.392.38e+032.43e+032.34e+03
1.81e+07https://www.airbnb.com/rooms/18134314399       2200150      Apartment1799Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.8e+03 3.25Brokvarterer3.290.00353-0.0371  3.283.3 1.96e+031.99e+031.93e+03
1.81e+07https://www.airbnb.com/rooms/18138750605       150150      Apartment2593Private room1  122FALSEFALSENrrebromoderate12.655.73.07e+033.49Brokvarterer3.270.003250.221   3.263.271.85e+031.87e+031.82e+03
1.82e+07https://www.airbnb.com/rooms/18157959392       169199      Apartment1093Private room1  112FALSETRUEAmager Vestflexible12.655.72.43e+033.39Amager3.210.003740.176   3.2 3.221.62e+031.65e+031.59e+03
1.82e+07https://www.airbnb.com/rooms/18184849299       15297      Apartment3394Private room1  112FALSEFALSENrrebroflexible12.655.71.64e+033.21Brokvarterer3.240.00309-0.0281  3.243.251.75e+031.77e+031.72e+03
1.82e+07https://www.airbnb.com/rooms/18191280199       10100      Apartment1393Private room1  011FALSETRUEAmager Vestflexible12.655.71.2e+03 3.08Amager3.130.00393-0.0514  3.123.141.35e+031.37e+031.32e+03
1.82e+07https://www.airbnb.com/rooms/18191683385       240195      Apartment5795Private room1  112FALSEFALSEValbymoderate12.555.71.58e+033.2 West3.170.005420.0316  3.163.181.47e+031.51e+031.43e+03
1.82e+07https://www.airbnb.com/rooms/18201697345       11000      Apartment5693Private room1  112FALSEFALSENrrebrostrict_14_with_grace_period12.555.71.48e+033.17Brokvarterer3.290.00363-0.12    3.283.3 1.95e+031.98e+031.92e+03
1.82e+07https://www.airbnb.com/rooms/18218584751       15000      Apartment1198Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.73.5e+03 3.54Brokvarterer3.290.003530.256   3.283.3 1.95e+031.98e+031.91e+03
1.82e+07https://www.airbnb.com/rooms/18218713399       100      Apartment3194Private room1  112FALSEFALSEValbyflexible12.555.71.6e+03 3.2 West3.130.005090.0687  3.123.141.36e+031.39e+031.33e+03
1.82e+07https://www.airbnb.com/rooms/18238100498       2350200      Apartment4899Private room1  112TRUETRUEsterbromoderate12.655.72.34e+033.37Brokvarterer3.310.004040.0623  3.3 3.322.03e+032.07e+031.99e+03
1.82e+07https://www.airbnb.com/rooms/18242845385       13000      Apartment2299Private room1.5122FALSETRUENrrebromoderate12.555.71.84e+033.26Brokvarterer3.3 0.00387-0.0352  3.293.312e+03       2.03e+031.96e+03
1.83e+07https://www.airbnb.com/rooms/18287526352       12500      Apartment1996Private room1  112FALSETRUEBispebjergflexible12.555.71.66e+033.22Nordvest3.130.004550.0939  3.123.131.34e+031.36e+031.31e+03
1.83e+07https://www.airbnb.com/rooms/18287739352       12000      Apartment2697Private room1  112FALSEFALSEVanlsemoderate12.555.71.61e+033.21Nordvest3.160.004730.0512  3.153.161.43e+031.46e+031.4e+03 
1.84e+07https://www.airbnb.com/rooms/18367064345       120075      Apartment1098Private room1  111FALSETRUENrrebroflexible12.655.71.88e+033.27Brokvarterer3.210.003240.0669  3.2 3.211.61e+031.64e+031.59e+03
1.84e+07https://www.airbnb.com/rooms/18385711239       11200      Apartment5795Private room1  111FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.08e+033.03Nordvest3.140.00516-0.109   3.133.151.38e+031.41e+031.35e+03
1.84e+07https://www.airbnb.com/rooms/18390509498       214999      Apartment1496Private room1  033FALSEFALSEAmager Vestmoderate12.655.72.14e+033.33Amager3.230.004850.0986  3.223.241.71e+031.74e+031.67e+03
1.84e+07https://www.airbnb.com/rooms/18398844352       11700      Apartment15100Private room1  112TRUETRUEAmager stmoderate12.655.71.58e+033.2 Amager3.280.00474-0.0783  3.273.291.89e+031.93e+031.85e+03
1.84e+07https://www.airbnb.com/rooms/18409775950       11800      Apartment1392Private room1  122FALSEFALSEIndre Byflexible12.655.73.98e+033.6 Center3.370.004  0.233   3.363.382.33e+032.37e+032.29e+03
1.84e+07https://www.airbnb.com/rooms/18425260252       100      Apartment1994Private room1  111FALSETRUEValbyflexible12.555.71.01e+033   West3.1 0.00516-0.0929  3.093.111.25e+031.28e+031.22e+03
1.85e+07https://www.airbnb.com/rooms/18474104452       12500      Townhouse6499Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.06e+033.31Brokvarterer3.340.00872-0.0279  3.323.362.19e+032.28e+032.11e+03
1.85e+07https://www.airbnb.com/rooms/18505185352       11100      Apartment2694Private room1  112FALSETRUEBispebjergmoderate12.555.71.52e+033.18Nordvest3.150.0047 0.0301  3.143.161.42e+031.45e+031.39e+03
1.85e+07https://www.airbnb.com/rooms/18539305452       100      Apartment3192Private room1  112FALSETRUEAmager Vestflexible12.655.71.81e+033.26Amager3.210.003780.0449  3.2 3.221.63e+031.66e+031.6e+03 
1.85e+07https://www.airbnb.com/rooms/18542758352       21001e+03      Apartment3795Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.51e+033.18Amager3.260.00412-0.0845  3.253.271.83e+031.87e+031.8e+03 
1.86e+07https://www.airbnb.com/rooms/18590671239       10120      Apartment4698Private room1  001TRUETRUEsterbroflexible12.655.71.44e+033.16Brokvarterer3.2 0.00417-0.0402  3.193.211.58e+031.61e+031.55e+03
1.86e+07https://www.airbnb.com/rooms/18621872239       150100      Apartment1895Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.41e+033.15Brokvarterer3.270.00326-0.12    3.263.271.85e+031.88e+031.82e+03
1.87e+07https://www.airbnb.com/rooms/18686581425       1125100      Apartment4497Private room1  112TRUETRUENrrebroflexible12.555.72.22e+033.35Brokvarterer3.280.003980.0702  3.273.281.89e+031.93e+031.86e+03
1.87e+07https://www.airbnb.com/rooms/186877681e+03       10659      Apartment2493Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.555.76.65e+033.82Brokvarterer3.280.003440.538   3.283.291.93e+031.96e+031.9e+03 
1.87e+07https://www.airbnb.com/rooms/18711110399       100      Apartment9190Private room0.5112FALSEFALSENrrebroflexible12.655.71.6e+03 3.2 Brokvarterer3.220.00466-0.0169  3.213.231.66e+031.69e+031.62e+03
1.87e+07https://www.airbnb.com/rooms/18719656352       10150      Apartment3693Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.01e+033.3 Brokvarterer3.290.003460.016   3.283.291.94e+031.97e+031.91e+03
1.87e+07https://www.airbnb.com/rooms/18723206498       100      Apartment1898Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.99e+033.3 Center3.390.00441-0.0865  3.383.392.43e+032.48e+032.38e+03
1.88e+07https://www.airbnb.com/rooms/18750251352       100      Apartment18100Private room1  112FALSEFALSENrrebroflexible12.555.71.41e+033.15Brokvarterer3.250.00319-0.0986  3.243.251.77e+031.79e+031.74e+03
1.88e+07https://www.airbnb.com/rooms/18785449432       100      Other6391Private room1.5122FALSETRUEAmager stflexible12.655.61.73e+033.24Amager3.320.00806-0.0789  3.3 3.332.07e+032.15e+032e+03       
1.88e+07https://www.airbnb.com/rooms/18785953478       100      Apartment1998Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.91e+033.28Brokvarterer3.240.003110.0368  3.243.251.76e+031.78e+031.73e+03
1.88e+07https://www.airbnb.com/rooms/18798700385       1150100      House3496Private room1  112FALSEFALSEBispebjergflexible12.555.72.09e+033.32Nordvest3.150.006850.173   3.133.161.4e+03 1.45e+031.36e+03
1.88e+07https://www.airbnb.com/rooms/18813923312       1185160      Apartment1092Private room1  113FALSETRUEsterbrostrict_14_with_grace_period12.655.72.07e+033.32Brokvarterer3.320.00368-0.0003233.313.322.07e+032.11e+032.04e+03
1.89e+07https://www.airbnb.com/rooms/18871990797       110050      Apartment2991Private room1  102FALSETRUEAmager ststrict_14_with_grace_period12.655.73.49e+033.54Amager3.260.004110.286   3.253.261.8e+03 1.84e+031.77e+03
1.89e+07https://www.airbnb.com/rooms/18873599697       100      Apartment3699Private room1  034TRUETRUEAmager stmoderate12.655.72.79e+033.45Amager3.310.005960.14    3.293.322.02e+032.07e+031.96e+03
1.89e+07https://www.airbnb.com/rooms/18882536498       100      Apartment1198Private room1  112FALSEFALSEIndre Bymoderate12.655.71.99e+033.3 Center3.4 0.00422-0.102   3.393.412.52e+032.57e+032.47e+03
1.89e+07https://www.airbnb.com/rooms/18894646352       100      Apartment21099Private room1  111TRUETRUEAmager stflexible12.655.71.41e+033.15Amager3.250.00788-0.0969  3.233.261.76e+031.82e+031.7e+03 
1.89e+07https://www.airbnb.com/rooms/18902129399       100      Apartment22895Private room1  111FALSETRUEFrederiksbergflexible12.555.71.6e+03 3.2 Brokvarterer3.240.00849-0.0375  3.223.261.74e+031.81e+031.67e+03
1.89e+07https://www.airbnb.com/rooms/18908041359       1100100      Apartment9997Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.655.71.94e+033.29Brokvarterer3.310.00445-0.0265  3.3 3.322.06e+032.1e+03 2.02e+03
1.89e+07https://www.airbnb.com/rooms/189107641.2e+03 4149224      Apartment4894Private room1  146FALSEFALSEIndre Byflexible12.655.74.93e+033.69Center3.520.005940.174   3.513.533.31e+033.4e+03 3.22e+03
1.89e+07https://www.airbnb.com/rooms/18910786498       2200200      Apartment10100Private room1  122FALSETRUEAmager Vestmoderate12.655.72.19e+033.34Amager3.250.004030.0947  3.243.251.76e+031.79e+031.73e+03
1.89e+07https://www.airbnb.com/rooms/18922548744       1475120      Apartment6398Private room1  112TRUETRUEIndre Byflexible12.655.73.93e+033.59Center3.410.004660.181   3.4 3.422.59e+032.64e+032.53e+03
1.89e+07https://www.airbnb.com/rooms/18929054173       10150      Apartment4199Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.29e+033.11Brokvarterer3.260.00371-0.148   3.253.271.82e+031.85e+031.79e+03
1.9e+07 https://www.airbnb.com/rooms/18950960352       1750      Condominium1193Private room1  111FALSETRUEValbystrict_14_with_grace_period12.555.71.48e+033.17West3.150.006760.0193  3.143.171.42e+031.46e+031.38e+03
1.9e+07 https://www.airbnb.com/rooms/18958914339       1045      Apartment2191Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.54e+033.19Brokvarterer3.240.00307-0.0495  3.233.241.72e+031.75e+031.7e+03 
1.9e+07 https://www.airbnb.com/rooms/18967179751       10200      Apartment12100Private room1  112FALSETRUEFrederiksbergmoderate12.555.73.8e+03 3.58Brokvarterer3.270.003380.307   3.273.281.88e+031.9e+03 1.85e+03
1.9e+07 https://www.airbnb.com/rooms/18971037751       1200250      Apartment1699Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.74.2e+03 3.62Brokvarterer3.290.003530.332   3.283.3 1.96e+031.99e+031.92e+03
1.9e+07 https://www.airbnb.com/rooms/18973115352       10100      Apartment1699Private room1.5112FALSETRUEsterbromoderate12.655.71.81e+033.26Brokvarterer3.3 0.00388-0.0418  3.293.311.99e+032.03e+031.96e+03
1.9e+07 https://www.airbnb.com/rooms/18995258498       2275650      Apartment9097Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.27e+033.36Brokvarterer3.330.004430.0248  3.323.342.14e+032.18e+032.1e+03 
1.9e+07 https://www.airbnb.com/rooms/19024464286       1300199      Apartment1297Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.24e+033.35Brokvarterer3.230.003420.117   3.233.241.71e+031.74e+031.68e+03
1.9e+07 https://www.airbnb.com/rooms/19025050399       2100150      Apartment3892Private room1  122FALSETRUEValbymoderate12.555.71.7e+03 3.23West3.160.005290.0696  3.153.171.44e+031.48e+031.41e+03
1.9e+07 https://www.airbnb.com/rooms/19030871352       11500      Apartment1495Private room1  112FALSETRUEFrederiksbergflexible12.555.71.56e+033.19Brokvarterer3.240.00305-0.0474  3.233.251.74e+031.76e+031.71e+03
1.91e+07https://www.airbnb.com/rooms/19084886352       100      Apartment1295Private room1  122FALSETRUEValbyflexible12.555.71.41e+033.15West3.130.005060.0162  3.123.141.36e+031.39e+031.33e+03
1.91e+07https://www.airbnb.com/rooms/19089527199       1150135      Apartment3494Private room1  112FALSETRUENrrebromoderate12.655.71.49e+033.17Brokvarterer3.270.00327-0.0969  3.263.281.86e+031.89e+031.83e+03
1.91e+07https://www.airbnb.com/rooms/19112379452       21500      Townhouse7099Private room1  122TRUETRUEFrederiksbergmoderate12.555.71.96e+033.29Brokvarterer3.320.00865-0.0318  3.313.342.11e+032.19e+032.03e+03
1.91e+07https://www.airbnb.com/rooms/19117655399       280100      Apartment3099Private room1  123FALSETRUEAmager stmoderate12.655.71.68e+033.22Amager3.280.00415-0.0598  3.283.291.92e+031.96e+031.89e+03
1.91e+07https://www.airbnb.com/rooms/19135934399       13500      Apartment2498Private room1  112FALSEFALSEFrederiksbergmoderate12.655.71.95e+033.29Brokvarterer3.270.003290.0166  3.273.281.87e+031.9e+03 1.85e+03
1.92e+07https://www.airbnb.com/rooms/19150296551       1245100      Apartment1498Private room1  022FALSEFALSENrrebromoderate12.555.72.85e+033.45Brokvarterer3.230.003880.229   3.223.231.68e+031.71e+031.65e+03
1.92e+07https://www.airbnb.com/rooms/19166934299       2150150      Apartment2694Private room1.5112FALSETRUEsterbroflexible12.655.71.35e+033.13Brokvarterer3.270.00368-0.138   3.263.271.85e+031.88e+031.82e+03
1.92e+07https://www.airbnb.com/rooms/19177904299       189373      Apartment10599Private room1  111TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.78e+033.44Amager3.270.005320.17    3.263.281.88e+031.92e+031.83e+03
1.92e+07https://www.airbnb.com/rooms/19241525299       190100      Apartment1696Private room1  111FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.71.69e+033.23Brokvarterer3.250.0036 -0.0245  3.243.261.78e+031.81e+031.76e+03
1.93e+07https://www.airbnb.com/rooms/19262602399       10200      Apartment3493Private room1  111FALSEFALSEsterbromoderate12.655.72.4e+03 3.38Brokvarterer3.230.003410.148   3.233.241.71e+031.73e+031.68e+03
1.93e+07https://www.airbnb.com/rooms/19268790392       2250100      Apartment102100Private room1  112FALSETRUEsterbromoderate12.655.71.82e+033.26Brokvarterer3.290.00445-0.0288  3.283.3 1.94e+031.98e+031.9e+03 
1.93e+07https://www.airbnb.com/rooms/19302727332       15065      Apartment19100Private room1  112FALSETRUEFrederiksbergmoderate12.655.71.64e+033.21Brokvarterer3.270.00336-0.0599  3.273.281.88e+031.91e+031.85e+03
1.93e+07https://www.airbnb.com/rooms/19329996598       10100      Apartment11100Private room1  112FALSEFALSEVesterbro-Kongens Enghaveflexible12.655.72.79e+033.45Brokvarterer3.250.0032 0.2     3.243.251.76e+031.79e+031.74e+03
1.93e+07https://www.airbnb.com/rooms/19345736498       100      House1096Private room1  122TRUETRUEAmager Vestmoderate12.655.61.99e+033.3 Amager3.290.006980.0101  3.283.3 1.95e+032.01e+031.89e+03
1.94e+07https://www.airbnb.com/rooms/193703195e+03       145100      Apartment17991Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.05e+044.31Brokvarterer3.290.006631.02    3.283.3 1.95e+032.01e+031.89e+03
1.94e+07https://www.airbnb.com/rooms/19373432498       12500      Other12297Private room1  112FALSEFALSEFrederiksbergflexible12.655.72.24e+033.35Brokvarterer3.330.008410.0162  3.323.352.16e+032.24e+032.08e+03
1.94e+07https://www.airbnb.com/rooms/19373666326       1100190      Apartment12194Private room1  112TRUEFALSEsterbrostrict_14_with_grace_period12.655.72.16e+033.34Brokvarterer3.330.004960.0033  3.323.342.15e+032.2e+03 2.1e+03 
1.94e+07https://www.airbnb.com/rooms/19376595199       1150125      Condominium1195Private room1  113FALSETRUEVanlsestrict_14_with_grace_period12.555.71.45e+033.16Nordvest3.220.00633-0.0568  3.2 3.231.65e+031.7e+03 1.6e+03 
1.94e+07https://www.airbnb.com/rooms/19379916372       100      Apartment2396Private room1  111FALSETRUEFrederiksbergflexible12.655.71.49e+033.17Brokvarterer3.210.0032 -0.0343  3.2 3.211.61e+031.63e+031.59e+03
1.94e+07https://www.airbnb.com/rooms/19383408498       100      Apartment1293Private room1  112FALSETRUEIndre Bymoderate12.655.71.99e+033.3 Center3.4 0.00418-0.0961  3.393.4 2.49e+032.53e+032.44e+03
1.94e+07https://www.airbnb.com/rooms/19393240299       100      Apartment1195Private room1  122FALSETRUEVanlseflexible12.555.71.2e+03 3.08Nordvest3.120.00454-0.0452  3.113.131.33e+031.35e+031.3e+03 
1.94e+07https://www.airbnb.com/rooms/19419406452       100      House10898Private room1  112TRUETRUEAmager stmoderate12.655.61.81e+033.26Amager3.310.00719-0.0513  3.293.322.03e+032.1e+03 1.97e+03
1.94e+07https://www.airbnb.com/rooms/19429866498       1500      Apartment2991Private room1  122FALSETRUEsterbroflexible12.655.72.04e+033.31Brokvarterer3.240.0031 0.0728  3.233.241.73e+031.75e+031.7e+03 
1.94e+07https://www.airbnb.com/rooms/19445943452       100      Apartment2490Private room1  112FALSETRUEAmager stmoderate12.655.71.81e+033.26Amager3.240.003960.0218  3.233.241.72e+031.75e+031.69e+03
1.94e+07https://www.airbnb.com/rooms/19449934425       17570      Apartment1599Private room1  112FALSEFALSEValbyflexible12.555.72.06e+033.31West3.140.005130.175   3.133.151.37e+031.41e+031.34e+03
1.95e+07https://www.airbnb.com/rooms/19465963332       215050      Apartment2191Private room1  123FALSETRUEAmager stmoderate12.655.71.48e+033.17Amager3.270.00409-0.102   3.263.281.87e+031.91e+031.84e+03
1.95e+07https://www.airbnb.com/rooms/19470146498       20109      Apartment4692Private room1  122FALSEFALSEAmager ststrict_14_with_grace_period12.655.71.99e+033.3 Amager3.260.004170.0388  3.253.271.82e+031.86e+031.79e+03
1.95e+07https://www.airbnb.com/rooms/19503407498       100      Apartment1394Private room1  011TRUETRUEIndre Byflexible12.655.71.99e+033.3 Center3.320.005  -0.0187  3.313.332.08e+032.13e+032.03e+03
1.95e+07https://www.airbnb.com/rooms/19549045498       100      Apartment3199Private room1  112FALSEFALSEIndre Byflexible12.655.71.99e+033.3 Center3.380.00407-0.0803  3.373.392.4e+03 2.44e+032.35e+03
1.96e+07https://www.airbnb.com/rooms/19561679511       11490      Apartment5795Private room1  112FALSETRUEFrederiksbergflexible12.555.72.19e+033.34Brokvarterer3.250.003380.0938  3.243.251.77e+031.79e+031.74e+03
1.96e+07https://www.airbnb.com/rooms/19570597498       2120300      Other4098Private room1  114TRUEFALSEAmager stflexible12.655.62.11e+033.32Amager3.4 0.00831-0.0717  3.383.412.49e+032.59e+032.4e+03 
1.96e+07https://www.airbnb.com/rooms/19580563266       100      Apartment1998Private room1  111FALSETRUEAmager Vestmoderate12.655.71.06e+033.03Amager3.210.00407-0.182   3.2 3.221.62e+031.65e+031.59e+03
1.96e+07https://www.airbnb.com/rooms/19582349399       1100100      Apartment1398Private room1  112FALSETRUEFrederiksbergmoderate12.555.72.1e+03 3.32Brokvarterer3.270.003320.0508  3.263.281.86e+031.89e+031.84e+03
1.96e+07https://www.airbnb.com/rooms/19582694452       1500250      Condominium10100Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.73.31e+033.52Brokvarterer3.3 0.005340.216   3.293.312.01e+032.06e+031.97e+03
1.96e+07https://www.airbnb.com/rooms/19588342299       100      Condominium1599Private room1  112FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.71.2e+03 3.08West3.2 0.0067 -0.119   3.183.211.57e+031.62e+031.52e+03
1.96e+07https://www.airbnb.com/rooms/19588780193       100      Condominium11100Private room2  111FALSETRUEsterbroflexible12.655.7772       2.89Brokvarterer3.280.00672-0.388   3.263.291.89e+031.94e+031.83e+03
1.96e+07https://www.airbnb.com/rooms/19615708498       100      Apartment6399Private room1  112TRUETRUEAmager Vestflexible12.655.71.99e+033.3 Amager3.260.004620.043   3.253.271.8e+03 1.84e+031.77e+03
1.96e+07https://www.airbnb.com/rooms/19632039498       10200      Apartment13199Private room1  122TRUEFALSEVesterbro-Kongens Enghaveflexible12.655.72.79e+033.45Brokvarterer3.290.0052 0.151   3.283.3 1.97e+032.02e+031.92e+03
1.97e+07https://www.airbnb.com/rooms/19651670359       15050      Apartment2495Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.71.69e+033.23Brokvarterer3.290.00344-0.0605  3.283.291.94e+031.97e+031.91e+03
1.97e+07https://www.airbnb.com/rooms/19655784352       100      Apartment2896Private room1  122FALSEFALSEValbymoderate12.555.71.41e+033.15West3.160.00526-0.0148  3.153.171.46e+031.49e+031.42e+03
1.97e+07https://www.airbnb.com/rooms/19677821359       1500      Apartment3697Private room1  112FALSEFALSEValbymoderate12.555.71.49e+033.17West3.170.005290.00594 3.163.181.47e+031.5e+03 1.43e+03
1.97e+07https://www.airbnb.com/rooms/19687138452       11500      Apartment2897Private room1  112FALSETRUENrrebroflexible12.655.71.96e+033.29Brokvarterer3.240.003110.0469  3.243.251.76e+031.78e+031.73e+03
1.97e+07https://www.airbnb.com/rooms/19693932292       10150      Apartment1196Private room1  112FALSETRUEsterbroflexible12.655.71.77e+033.25Brokvarterer3.240.003070.00674 3.233.251.74e+031.77e+031.72e+03
1.97e+07https://www.airbnb.com/rooms/19696495498       100      Other5793Private room1  112FALSEFALSEAmager stflexible12.655.71.99e+033.3 Amager3.290.007880.00785 3.283.311.96e+032.03e+031.89e+03
1.97e+07https://www.airbnb.com/rooms/19722778452       2100150      Apartment8192Private room1  114FALSETRUEsterbromoderate12.655.71.91e+033.28Brokvarterer3.350.00447-0.0656  3.343.352.22e+032.26e+032.17e+03
1.97e+07https://www.airbnb.com/rooms/19731801598       1800      Townhouse4897Private room1  112TRUETRUEIndre Bymoderate12.655.72.47e+033.39Center3.450.00883-0.0556  3.433.472.81e+032.92e+032.7e+03 
1.97e+07https://www.airbnb.com/rooms/19746609299       100      Apartment1393Private room2  112FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.2e+03 3.08Brokvarterer3.340.00541-0.258   3.333.352.17e+032.22e+032.12e+03
1.98e+07https://www.airbnb.com/rooms/19753550598       11000      Apartment1092Private room1  111FALSEFALSEAmager Vestflexible12.655.72.49e+033.4 Amager3.170.003880.224   3.173.181.49e+031.51e+031.46e+03
1.98e+07https://www.airbnb.com/rooms/19763681438       12000      House17100Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.95e+033.29Brokvarterer3.320.00688-0.0314  3.313.342.1e+03 2.16e+032.03e+03
1.98e+07https://www.airbnb.com/rooms/19801709950       30200      Apartment2799Private room1  244TRUETRUEsterbroflexible12.655.73.8e+03 3.58Brokvarterer3.390.004430.186   3.393.4 2.48e+032.53e+032.43e+03
1.98e+07https://www.airbnb.com/rooms/19814402498       100      Apartment1098Private room1  112FALSETRUEIndre Byflexible12.655.71.99e+033.3 Center3.370.00407-0.0754  3.373.382.37e+032.41e+032.33e+03
1.98e+07https://www.airbnb.com/rooms/19836054452       100      Apartment15100Private room1  111TRUEFALSEIndre Bystrict_14_with_grace_period12.655.71.81e+033.26Center3.420.0051 -0.16    3.413.432.61e+032.67e+032.55e+03
1.98e+07https://www.airbnb.com/rooms/19839869744       100      Apartment2794Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.72.98e+033.47Brokvarterer3.240.003060.233   3.233.251.74e+031.77e+031.72e+03
1.99e+07https://www.airbnb.com/rooms/19851282498       10125      Apartment1599Private room1  224FALSETRUEAmager Vestmoderate12.655.72.49e+033.4 Amager3.360.004360.0336  3.353.372.31e+032.35e+032.26e+03
1.99e+07https://www.airbnb.com/rooms/19873579246       120060      Apartment11100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.42e+033.15Brokvarterer3.270.00339-0.119   3.273.281.87e+031.9e+03 1.85e+03
1.99e+07https://www.airbnb.com/rooms/19886326399       100      Condominium128100Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.6e+03 3.2 Brokvarterer3.310.0064 -0.105   3.3 3.322.03e+032.09e+031.97e+03
1.99e+07https://www.airbnb.com/rooms/19902602452       1100120      Apartment6799Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.555.72.39e+033.38Brokvarterer3.330.004230.0487  3.323.342.13e+032.18e+032.09e+03
1.99e+07https://www.airbnb.com/rooms/19902819578       1120120      Apartment2695Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.72.91e+033.46Amager3.260.004090.203   3.253.271.82e+031.86e+031.79e+03
1.99e+07https://www.airbnb.com/rooms/19928221299       10200      Apartment2892Private room1  112FALSETRUEVanlsestrict_14_with_grace_period12.555.72e+03       3.3 Nordvest3.170.004850.133   3.163.181.47e+031.5e+03 1.44e+03
1.99e+07https://www.airbnb.com/rooms/19935828219       100      Apartment2292Private room1  012FALSEFALSENrrebromoderate12.655.7876       2.94Brokvarterer3.220.00382-0.276   3.213.231.66e+031.68e+031.63e+03
2e+07       https://www.airbnb.com/rooms/19956178465       1100100      Apartment1996Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.36e+033.37Brokvarterer3.320.004310.0557  3.313.332.08e+032.12e+032.04e+03
2e+07       https://www.airbnb.com/rooms/19978674419       100      Apartment2094Private room1  112FALSETRUEsterbromoderate12.655.71.68e+033.22Brokvarterer3.270.00325-0.0423  3.263.271.85e+031.87e+031.82e+03
2e+07       https://www.airbnb.com/rooms/19981986458       2150200      Apartment9497Private room1  112TRUETRUEValbymoderate12.555.71.98e+033.3 West3.210.006070.0917  3.193.221.6e+03 1.65e+031.56e+03
2e+07       https://www.airbnb.com/rooms/20002449598       1100300      Apartment3398Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.555.73.69e+033.57Brokvarterer3.3 0.004070.264   3.3 3.312.01e+032.05e+031.97e+03
2e+07       https://www.airbnb.com/rooms/20028752498       11500      Apartment6595Private room1  112TRUETRUEIndre Byflexible12.655.72.14e+033.33Center3.410.00466-0.0787  3.4 3.422.57e+032.62e+032.51e+03
2e+07       https://www.airbnb.com/rooms/20029280531       2350100      Apartment1290Private room1  113FALSETRUEIndre Bymoderate12.655.72.47e+033.39Center3.430.00436-0.0339  3.423.442.68e+032.73e+032.62e+03
2e+07       https://www.airbnb.com/rooms/20041838458       11000      Apartment27100Private room1  112FALSEFALSEsterbromoderate12.655.71.93e+033.29Brokvarterer3.280.003360.0104  3.273.281.89e+031.92e+031.86e+03
2e+07       https://www.airbnb.com/rooms/20041858332       1750      Apartment1397Private room1.5112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.4e+03 3.15Brokvarterer3.310.00401-0.168   3.313.322.06e+032.1e+03 2.03e+03
2e+07       https://www.airbnb.com/rooms/20043812299       100      Apartment1291Private room1  111FALSETRUEAmager stmoderate12.655.71.2e+03 3.08Amager3.2 0.00409-0.121   3.193.211.58e+031.61e+031.55e+03
2.01e+07https://www.airbnb.com/rooms/20060114697       15000      Apartment6997Private room1  244TRUEFALSEsterbromoderate12.655.73.29e+033.52Brokvarterer3.430.004460.0914  3.423.432.66e+032.72e+032.61e+03
2.01e+07https://www.airbnb.com/rooms/20060237485       100      Other10392Private room1  112FALSETRUEIndre Byflexible12.655.71.94e+033.29Center3.460.00836-0.168   3.443.472.86e+032.97e+032.75e+03
2.01e+07https://www.airbnb.com/rooms/20121448392       14990      Condominium2497Private room1  112TRUETRUENrrebromoderate12.555.72.07e+033.32Brokvarterer3.310.005660.00236 3.3 3.322.06e+032.11e+032e+03       
2.01e+07https://www.airbnb.com/rooms/20135357432       11300      Apartment23496Private room1  112TRUETRUEIndre Byflexible12.655.71.86e+033.27Center3.440.0083 -0.171   3.423.462.75e+032.86e+032.65e+03
2.01e+07https://www.airbnb.com/rooms/20141519458       1060      Apartment6294Private room1  102FALSEFALSEsterbroflexible12.655.72.07e+033.32Brokvarterer3.250.003450.0696  3.243.251.77e+031.79e+031.74e+03
2.02e+07https://www.airbnb.com/rooms/20188270452       100      Apartment3197Private room1  112TRUEFALSEAmager stflexible12.655.71.81e+033.26Amager3.250.004540.00895 3.243.261.77e+031.81e+031.74e+03
2.02e+07https://www.airbnb.com/rooms/20189430598       11500      Apartment3297Private room1  112FALSETRUEFrederiksbergflexible12.655.72.54e+033.41Brokvarterer3.250.003130.16    3.243.251.76e+031.79e+031.74e+03
2.02e+07https://www.airbnb.com/rooms/20212715352       1100100      Condominium1395Private room1  112FALSETRUEFrederiksbergflexible12.555.71.91e+033.28Brokvarterer3.250.005050.0284  3.243.261.79e+031.83e+031.75e+03
2.02e+07https://www.airbnb.com/rooms/20223600392       1100125      House2699Private room1  111TRUETRUEAmager Vestmoderate12.655.62.17e+033.34Amager3.260.007  0.0761  3.253.271.82e+031.88e+031.76e+03
2.02e+07https://www.airbnb.com/rooms/20228552299       100      Apartment1295Private room1  112FALSETRUEBispebjergflexible12.555.71.2e+03 3.08Nordvest3.120.00453-0.0454  3.113.131.33e+031.36e+031.3e+03 
2.03e+07https://www.airbnb.com/rooms/20279730299       15050      Apartment11100Private room1  112FALSETRUEFrederiksbergflexible12.555.71.45e+033.16Brokvarterer3.250.0032 -0.0858  3.243.251.76e+031.79e+031.74e+03
2.03e+07https://www.airbnb.com/rooms/20294841498       31000      House6996Private room1  123TRUETRUEBispebjergflexible12.655.72.09e+033.32Nordvest3.220.007420.102   3.2 3.231.65e+031.71e+031.6e+03 
2.03e+07https://www.airbnb.com/rooms/20324052452       11250      Apartment5397Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.93e+033.29Brokvarterer3.250.003350.037   3.243.261.78e+031.8e+03 1.75e+03
2.03e+07https://www.airbnb.com/rooms/20327436206       100      Apartment1699Private room1  112FALSETRUEBispebjergflexible12.555.7824       2.92Nordvest3.130.00462-0.213   3.123.141.35e+031.37e+031.32e+03
2.03e+07https://www.airbnb.com/rooms/20346753452       11000      Apartment1394Private room1  122FALSETRUEIndre Byflexible12.655.71.91e+033.28Center3.370.004  -0.0893  3.363.382.34e+032.39e+032.3e+03 
2.04e+07https://www.airbnb.com/rooms/20356756352       11000      Apartment8593Private room1  112FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.71.51e+033.18Brokvarterer3.280.00396-0.0979  3.273.281.89e+031.92e+031.86e+03
2.04e+07https://www.airbnb.com/rooms/20376992405       2350100      Apartment13893Private room1  113TRUETRUEIndre Byflexible12.655.71.97e+033.29Center3.460.00576-0.161   3.443.472.85e+032.93e+032.78e+03
2.04e+07https://www.airbnb.com/rooms/20382007452       20200      Apartment2999Private room1  124TRUETRUENrrebroflexible12.655.71.81e+033.26Brokvarterer3.350.00464-0.0918  3.343.362.23e+032.28e+032.19e+03
2.04e+07https://www.airbnb.com/rooms/20385251372       2150100      Apartment5198Private room1  122TRUETRUEFrederiksbergflexible12.555.71.64e+033.21Brokvarterer3.280.004  -0.0653  3.273.291.9e+03 1.94e+031.87e+03
2.04e+07https://www.airbnb.com/rooms/20436408498       1500      Apartment1198Private room1  112FALSEFALSEAmager Vestmoderate12.655.72.04e+033.31Amager3.240.003970.0664  3.243.251.75e+031.78e+031.72e+03
2.04e+07https://www.airbnb.com/rooms/20436469399       1250100      House6292Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.25e+033.35Brokvarterer3.310.006710.0426  3.3 3.322.04e+032.1e+03 1.98e+03
2.04e+07https://www.airbnb.com/rooms/20443736551       100      Apartment1899Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.72.2e+03 3.34Brokvarterer3.320.004330.0223  3.313.332.09e+032.14e+032.05e+03
2.05e+07https://www.airbnb.com/rooms/20476614352       1100120      Apartment1298Private room1  112FALSETRUEsterbromoderate12.655.71.99e+033.3 Brokvarterer3.270.003320.028   3.263.281.86e+031.89e+031.84e+03
2.05e+07https://www.airbnb.com/rooms/20510605199       1150149      Apartment1592Private room1  012FALSETRUEAmager stflexible12.655.71.54e+033.19Amager3.160.004180.024   3.163.171.46e+031.49e+031.43e+03
2.06e+07https://www.airbnb.com/rooms/20551052976       100      House2299Private room1  345TRUETRUEBrnshj-Husumflexible12.555.73.9e+03 3.59West3.390.007310.205   3.373.4 2.43e+032.52e+032.36e+03
2.06e+07https://www.airbnb.com/rooms/20588487751       1750      Apartment2899Private room1  112FALSETRUEAmager Vestmoderate12.655.73.08e+033.49Amager3.250.003980.241   3.243.261.77e+031.8e+03 1.74e+03
2.06e+07https://www.airbnb.com/rooms/20629276299       100      Apartment1295Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.2e+03 3.08Brokvarterer3.270.00328-0.189   3.263.271.85e+031.87e+031.82e+03
2.07e+07https://www.airbnb.com/rooms/20661849399       1250200      Apartment4594Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.65e+033.42Brokvarterer3.270.003330.152   3.263.281.87e+031.89e+031.84e+03
2.07e+07https://www.airbnb.com/rooms/20664377352       1250200      Apartment1695Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.46e+033.39Brokvarterer3.260.004340.13    3.253.271.82e+031.86e+031.79e+03
2.07e+07https://www.airbnb.com/rooms/20692228452       1150200      Apartment1098Private room1  111FALSEFALSEIndre Bymoderate12.655.72.76e+033.44Center3.370.004350.0749  3.363.372.32e+032.37e+032.28e+03
2.07e+07https://www.airbnb.com/rooms/20707331452       2300200      Apartment9297Private room1.5112TRUETRUENrrebromoderate12.555.72.11e+033.32Brokvarterer3.340.0048 -0.0149  3.333.352.18e+032.23e+032.13e+03
2.08e+07https://www.airbnb.com/rooms/20793730399       100      Apartment9099Private room1  112TRUETRUEIndre Byflexible12.655.71.6e+03 3.2 Center3.420.00489-0.216   3.413.432.62e+032.68e+032.57e+03
2.09e+07https://www.airbnb.com/rooms/20871744299       11000      Apartment7697Private room1  111TRUETRUEFrederiksbergflexible12.555.71.3e+03 3.11Brokvarterer3.250.0043 -0.134   3.243.261.76e+031.8e+03 1.73e+03
2.09e+07https://www.airbnb.com/rooms/20879007764       16666      Apartment1992Private room1  122TRUETRUEAmager stmoderate12.655.73.39e+033.53Amager3.270.004750.263   3.263.281.85e+031.89e+031.81e+03
2.09e+07https://www.airbnb.com/rooms/20879555352       11e+0350      Apartment1198Private room1  112FALSETRUENrrebroflexible12.655.72.61e+033.42Brokvarterer3.240.003120.173   3.243.251.75e+031.78e+031.73e+03
2.09e+07https://www.airbnb.com/rooms/20893496598       13500      Apartment3099Private room1  122TRUETRUEsterbromoderate12.655.72.74e+033.44Brokvarterer3.3 0.0041 0.134   3.3 3.312.01e+032.05e+031.98e+03
2.09e+07https://www.airbnb.com/rooms/20907750492       10200      House4093Private room1  112FALSETRUEIndre Byflexible12.655.72.77e+033.44Center3.390.006890.05    3.383.412.47e+032.54e+032.39e+03
2.09e+07https://www.airbnb.com/rooms/20923083233       125090      Townhouse9495Private room1  112FALSEFALSEAmager Vestmoderate12.655.61.54e+033.19Amager3.270.00872-0.0783  3.253.281.85e+031.92e+031.78e+03
2.1e+07 https://www.airbnb.com/rooms/20966472232       150120      Apartment1797Private room1  111FALSETRUEAmager Vestflexible12.655.71.46e+033.16Amager3.180.00389-0.0168  3.173.191.52e+031.54e+031.49e+03
2.1e+07 https://www.airbnb.com/rooms/20978118325       100      Apartment7398Private room1  111FALSETRUEFrederiksbergflexible12.555.71.3e+03 3.11Brokvarterer3.220.00385-0.104   3.213.231.65e+031.68e+031.62e+03
2.1e+07 https://www.airbnb.com/rooms/20992289452       17550      Apartment3294Private room1  112FALSETRUEsterbromoderate12.655.72.08e+033.32Brokvarterer3.270.003260.0501  3.263.281.86e+031.88e+031.83e+03
2.1e+07 https://www.airbnb.com/rooms/21001032279       1750      Apartment11100Private room1  122FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.19e+033.08Brokvarterer3.290.00359-0.216   3.283.3 1.96e+031.99e+031.93e+03
2.1e+07 https://www.airbnb.com/rooms/21044101299       100      Apartment1698Private room1  112FALSEFALSEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer3.240.00311-0.166   3.243.251.75e+031.78e+031.73e+03
2.11e+07https://www.airbnb.com/rooms/21065491399       1900      Apartment2798Private room1  112TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.69e+033.23Brokvarterer3.320.00425-0.0943  3.313.332.09e+032.14e+032.06e+03
2.11e+07https://www.airbnb.com/rooms/21073816352       100      Apartment2898Private room1  111TRUETRUEAmager Vestflexible12.655.71.41e+033.15Amager3.210.00467-0.0645  3.2 3.221.63e+031.67e+031.6e+03 
2.11e+07https://www.airbnb.com/rooms/21091973399       10150      Apartment2597Private room1  011TRUEFALSENrrebroflexible12.655.72.2e+03 3.34Brokvarterer3.190.004220.149   3.183.2 1.56e+031.59e+031.53e+03
2.11e+07https://www.airbnb.com/rooms/21138761678       2250350      Apartment6998Private room1  102TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.96e+033.47Brokvarterer3.330.004230.143   3.323.342.13e+032.17e+032.09e+03
2.11e+07https://www.airbnb.com/rooms/21141412392       15050      Apartment2397Private room1  111TRUETRUEAmager Vestflexible12.655.71.82e+033.26Amager3.210.004680.0486  3.2 3.221.63e+031.66e+031.59e+03
2.12e+07https://www.airbnb.com/rooms/21163339292       1500      Apartment1096Private room1  112TRUEFALSENrrebromoderate12.555.71.22e+033.09Brokvarterer3.3 0.00428-0.211   3.293.311.98e+032.02e+031.94e+03
2.12e+07https://www.airbnb.com/rooms/21208680452       179150      Apartment1897Private room1  112FALSEFALSENrrebromoderate12.655.72.49e+033.4 Brokvarterer3.270.003280.126   3.263.281.86e+031.89e+031.84e+03
2.13e+07https://www.airbnb.com/rooms/21262425452       200      Apartment2897Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.555.71.81e+033.26Brokvarterer3.320.00423-0.0628  3.313.332.09e+032.13e+032.05e+03
2.13e+07https://www.airbnb.com/rooms/21274710266       12000      House15793Private room1  122FALSETRUEAmager ststrict_14_with_grace_period12.655.71.26e+033.1 Amager3.3 0.0082 -0.198   3.283.321.99e+032.07e+031.92e+03
2.13e+07https://www.airbnb.com/rooms/21277004385       2300400      Apartment2598Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.655.61.84e+033.26Brokvarterer3.3 0.00413-0.0373  3.293.312e+03       2.04e+031.97e+03
2.13e+07https://www.airbnb.com/rooms/21289602352       1300200      Apartment7594Private room1  101FALSETRUEIndre Byflexible12.655.72.51e+033.4 Center3.340.004530.0548  3.343.352.21e+032.26e+032.17e+03
2.13e+07https://www.airbnb.com/rooms/21289914492       100      Apartment1897Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.97e+033.29Brokvarterer3.240.003080.0508  3.243.251.75e+031.78e+031.73e+03
2.13e+07https://www.airbnb.com/rooms/21293596651       1520100      Apartment5095Private room1  112TRUEFALSEIndre Byflexible12.655.73.52e+033.55Center3.410.004620.14    3.4 3.422.55e+032.61e+032.5e+03 
2.13e+07https://www.airbnb.com/rooms/21315290352       1250200      Apartment1698Private room1  112TRUETRUEIndre Bymoderate12.655.72.46e+033.39Center3.430.00488-0.0414  3.423.442.7e+03 2.76e+032.65e+03
2.13e+07https://www.airbnb.com/rooms/21348528352       1250200      Apartment2097Private room1  111TRUETRUEIndre Bymoderate12.655.72.46e+033.39Center3.4 0.00496-0.00487 3.393.412.49e+032.54e+032.43e+03
2.14e+07https://www.airbnb.com/rooms/21360892399       125075      Condominium6198Private room1  112TRUETRUEAmager ststrict_14_with_grace_period12.655.72.15e+033.33Amager3.310.006030.0189  3.3 3.322.05e+032.11e+032e+03       
2.14e+07https://www.airbnb.com/rooms/21443084419       10125      Apartment10598Private room1  111TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.18e+033.34Brokvarterer3.3 0.0048 0.0391  3.293.311.99e+032.03e+031.95e+03
2.14e+07https://www.airbnb.com/rooms/21447727352       1250200      Apartment2997Private room1  111TRUETRUEIndre Bymoderate12.655.72.46e+033.39Center3.4 0.00488-0.00641 3.393.412.49e+032.55e+032.44e+03
2.15e+07https://www.airbnb.com/rooms/21456409452       100      Apartment1898Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.81e+033.26Brokvarterer3.290.0035 -0.033   3.283.3 1.95e+031.98e+031.92e+03
2.15e+07https://www.airbnb.com/rooms/21469417146       10200      Apartment3695Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.38e+033.14Brokvarterer3.240.00312-0.103   3.243.251.75e+031.78e+031.73e+03
2.15e+07https://www.airbnb.com/rooms/21523040419       10100      Apartment1599Private room1  122TRUETRUEsterbromoderate12.655.72.08e+033.32Brokvarterer3.3 0.004230.0155  3.293.312e+03       2.04e+031.97e+03
2.15e+07https://www.airbnb.com/rooms/21548606452       11000      Apartment6696Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.61.91e+033.28Brokvarterer3.240.0042 0.037   3.243.251.75e+031.79e+031.72e+03
2.16e+07https://www.airbnb.com/rooms/21579637252       1330      Apartment5699Private room1  111TRUETRUEFrederiksbergflexible12.655.71.04e+033.02Brokvarterer3.250.00415-0.228   3.243.251.76e+031.79e+031.73e+03
2.16e+07https://www.airbnb.com/rooms/21617105332       100      Apartment2498Private room1  112FALSETRUEsterbroflexible12.655.71.33e+033.12Brokvarterer3.250.00312-0.122   3.243.251.76e+031.79e+031.74e+03
2.17e+07https://www.airbnb.com/rooms/21659212598       1350145      Apartment7498Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.32e+033.52Center3.460.004750.0608  3.453.472.89e+032.95e+032.83e+03
2.17e+07https://www.airbnb.com/rooms/21672404399       1050      Apartment2597Private room1  112FALSEFALSEsterbroflexible12.655.71.8e+03 3.25Brokvarterer3.240.0031 0.00987 3.243.251.76e+031.78e+031.73e+03
2.18e+07https://www.airbnb.com/rooms/21765429399       100      Apartment3393Private room1  122FALSETRUENrrebrostrict_14_with_grace_period12.655.71.6e+03 3.2 Brokvarterer3.290.00345-0.0832  3.283.291.93e+031.96e+031.9e+03 
2.18e+07https://www.airbnb.com/rooms/21777987352       1650      Apartment10100Private room1.5112FALSETRUENrrebromoderate12.555.71.47e+033.17Brokvarterer3.3 0.00393-0.131   3.293.311.99e+032.03e+031.96e+03
2.18e+07https://www.airbnb.com/rooms/21804827452       100      Apartment1093Private room1  112FALSEFALSEsterbroflexible12.655.71.81e+033.26Brokvarterer3.240.003060.0206  3.233.241.72e+031.75e+031.7e+03 
2.18e+07https://www.airbnb.com/rooms/21849053452       17575      Apartment2399Private room1  111TRUETRUEIndre Byflexible12.655.72.18e+033.34Center3.370.00486-0.0326  3.363.382.35e+032.41e+032.3e+03 
2.2e+07 https://www.airbnb.com/rooms/21961324751       100      Apartment8396Private room1  122FALSETRUEIndre Byflexible12.655.73e+03       3.48Center3.380.004540.0932  3.383.392.42e+032.47e+032.37e+03
2.2e+07 https://www.airbnb.com/rooms/21963885897       2350200      Apartment2294Private room1  114FALSETRUEVesterbro-Kongens Enghavemoderate12.655.73.94e+033.6 Brokvarterer3.340.003980.257   3.333.352.18e+032.22e+032.14e+03
2.2e+07 https://www.airbnb.com/rooms/21970408299       1700      Apartment5991Private room1  102FALSEFALSEValbyflexible12.555.71.27e+033.1 West3.140.00533-0.0328  3.123.151.37e+031.4e+03 1.33e+03
2.2e+07 https://www.airbnb.com/rooms/21975246173       100      Apartment1496Private room1  112FALSETRUEVanlseflexible12.555.7692       2.84Nordvest3.120.00455-0.285   3.123.131.33e+031.36e+031.31e+03
2.2e+07 https://www.airbnb.com/rooms/21992570332       1750      Apartment1599Private room1  112FALSEFALSEAmager Vestflexible12.655.61.4e+03 3.15Amager3.220.00382-0.0717  3.213.231.65e+031.68e+031.63e+03
2.2e+07 https://www.airbnb.com/rooms/22046795299       1150175      Apartment2999Private room1  122TRUETRUEVanlseflexible12.555.72.05e+033.31Nordvest3.160.005270.15    3.153.171.45e+031.48e+031.41e+03
2.21e+07https://www.airbnb.com/rooms/22084407399       2200100      Apartment2496Private room1  123FALSETRUEAmager stflexible12.655.71.8e+03 3.25Amager3.250.003940.00205 3.243.261.79e+031.82e+031.76e+03
2.21e+07https://www.airbnb.com/rooms/22101595266       18090      Townhouse2798Private room2  121FALSETRUEAmager Vestmoderate12.655.61.5e+03 3.18Amager3.280.0087 -0.0989  3.263.291.89e+031.96e+031.82e+03
2.22e+07https://www.airbnb.com/rooms/22246331252       1300      Apartment3792Private room1  112FALSETRUEAmager Vestmoderate12.655.71.04e+033.02Amager3.240.00395-0.224   3.233.251.74e+031.77e+031.71e+03
2.23e+07https://www.airbnb.com/rooms/22261416850       2310300      Apartment2192Private room1.5122FALSETRUEFrederiksbergstrict_14_with_grace_period12.655.73.71e+033.57Brokvarterer3.310.003990.26    3.3 3.322.04e+032.08e+032e+03       
2.23e+07https://www.airbnb.com/rooms/22264225299       100      Apartment13100Private room1  111FALSEFALSENrrebrostrict_14_with_grace_period12.555.71.2e+03 3.08Brokvarterer3.260.00371-0.178   3.253.261.8e+03 1.83e+031.77e+03
2.23e+07https://www.airbnb.com/rooms/22287222332       18050      Apartment1898Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.61e+033.21Brokvarterer3.3 0.00457-0.0943  3.293.312e+03       2.04e+031.96e+03
2.23e+07https://www.airbnb.com/rooms/22305846299       2150150      Apartment2095Private room1.5144FALSETRUENrrebromoderate12.555.71.35e+033.13Brokvarterer3.370.00434-0.237   3.363.372.32e+032.37e+032.28e+03
2.23e+07https://www.airbnb.com/rooms/22336351452       100      House9498Private room1  122TRUETRUEAmager stmoderate12.655.61.81e+033.26Amager3.310.00705-0.0489  3.293.322.02e+032.09e+031.96e+03
2.24e+07https://www.airbnb.com/rooms/22350241498       2400300      Townhouse11096Private room1  122FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.39e+033.38Center3.450.00915-0.0685  3.433.472.8e+03 2.92e+032.69e+03
2.24e+07https://www.airbnb.com/rooms/22356321352       135100      House11190Private room1  122FALSETRUEAmager Vestmoderate12.655.61.84e+033.27Amager3.270.0072 -0.00362 3.263.281.86e+031.92e+031.8e+03 
2.24e+07https://www.airbnb.com/rooms/22406518438       100      Apartment5491Private room1  112FALSETRUENrrebroflexible12.655.71.75e+033.24Brokvarterer3.240.003340.00201 3.233.251.74e+031.77e+031.72e+03
2.24e+07https://www.airbnb.com/rooms/22440451279       100      Apartment2596Private room1  012FALSEFALSEAmager stmoderate12.655.71.12e+033.05Amager3.2 0.00436-0.15    3.193.211.58e+031.61e+031.55e+03
2.25e+07https://www.airbnb.com/rooms/22459805233       100      Apartment1297Private room1  112FALSETRUEBispebjergmoderate12.555.7932       2.97Nordvest3.150.00474-0.183   3.143.161.42e+031.45e+031.39e+03
2.25e+07https://www.airbnb.com/rooms/22530215598       1100400      Apartment25100Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.74.09e+033.61Center3.450.004870.157   3.453.462.85e+032.91e+032.79e+03
2.25e+07https://www.airbnb.com/rooms/22539491332       1300150      Apartment1999Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.655.72.23e+033.35Brokvarterer3.290.004440.0627  3.283.291.93e+031.97e+031.89e+03
2.26e+07https://www.airbnb.com/rooms/22564689405       10149      Apartment1098Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.22e+033.35Center3.420.00432-0.0748  3.413.432.63e+032.68e+032.58e+03
2.26e+07https://www.airbnb.com/rooms/22579197199       1180190      Apartment2398Private room1.5002TRUETRUEBispebjergmoderate12.555.71.74e+033.24Nordvest3.170.006120.0732  3.153.181.47e+031.51e+031.43e+03
2.26e+07https://www.airbnb.com/rooms/22594454352       100      Apartment1498Private room1  112FALSETRUEsterbromoderate12.655.71.41e+033.15Brokvarterer3.270.00331-0.122   3.263.281.87e+031.89e+031.84e+03
2.26e+07https://www.airbnb.com/rooms/22632431598       100      Apartment28100Private room1  112TRUETRUEValbymoderate12.555.72.39e+033.38West3.2 0.005840.181   3.193.211.58e+031.62e+031.54e+03
2.27e+07https://www.airbnb.com/rooms/22715827399       100      Apartment11100Private room1  112TRUETRUEIndre Byflexible12.655.71.6e+03 3.2 Center3.410.00487-0.204   3.4 3.422.55e+032.61e+032.5e+03 
2.28e+07https://www.airbnb.com/rooms/22839284352       100      Apartment3498Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.41e+033.15Brokvarterer3.250.00317-0.0987  3.243.251.77e+031.79e+031.74e+03
2.28e+07https://www.airbnb.com/rooms/22840932372       25075      Apartment15100Private room2  112FALSETRUEBrnshj-Husummoderate12.555.71.54e+033.19West3.220.00672-0.0326  3.213.231.66e+031.71e+031.61e+03
2.28e+07https://www.airbnb.com/rooms/22844933598       12500      Apartment12100Private room1.5112TRUETRUENrrebroflexible12.555.72.64e+033.42Brokvarterer3.3 0.004640.12    3.293.312.01e+032.05e+031.96e+03
2.29e+07https://www.airbnb.com/rooms/22857727399       10100      Apartment1194Private room1  111FALSEFALSEValbyflexible12.555.72e+03       3.3 West3.1 0.005160.205   3.083.111.24e+031.27e+031.22e+03
2.29e+07https://www.airbnb.com/rooms/22857959392       150150      Townhouse9391Private room1  112FALSETRUEValbymoderate12.555.72.22e+033.35West3.180.009460.166   3.163.2 1.52e+031.58e+031.45e+03
2.29e+07https://www.airbnb.com/rooms/22875033452       100      Apartment6799Private room1.5112TRUETRUEAmager Vestflexible12.655.61.81e+033.26Amager3.280.00507-0.0264  3.273.291.92e+031.97e+031.88e+03
2.29e+07https://www.airbnb.com/rooms/22875266252       11000      Apartment4599Private room1  112TRUETRUEFrederiksbergmoderate12.555.71.11e+033.04Brokvarterer3.310.00404-0.262   3.3 3.312.03e+032.06e+031.99e+03
2.29e+07https://www.airbnb.com/rooms/22876836252       160100      Apartment2996Private room1  102TRUETRUEAmager Vestmoderate12.655.71.47e+033.17Amager3.270.00462-0.107   3.263.281.88e+031.92e+031.84e+03
2.29e+07https://www.airbnb.com/rooms/22925158485       1750      Apartment12100Private room1  102FALSETRUENrrebromoderate12.555.72.02e+033.3 Brokvarterer3.270.003380.0312  3.273.281.88e+031.9e+03 1.85e+03
2.29e+07https://www.airbnb.com/rooms/22949105418       110050      Apartment3296Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.61.97e+033.29Amager3.290.004730.00213 3.283.3 1.96e+032e+03       1.92e+03
2.3e+07 https://www.airbnb.com/rooms/23001413452       11000      Apartment12100Private room1  112FALSETRUEAmager stflexible12.655.71.91e+033.28Amager3.220.003860.0611  3.213.231.66e+031.69e+031.63e+03
2.31e+07https://www.airbnb.com/rooms/23088612286       1600      House14799Private room1  111TRUETRUEBrnshj-Husumflexible12.555.71.2e+03 3.08West3.170.00837-0.0925  3.163.191.49e+031.55e+031.43e+03
2.32e+07https://www.airbnb.com/rooms/23160214492       100      Apartment1990Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.97e+033.29Brokvarterer3.230.0031 0.0598  3.233.241.71e+031.74e+031.69e+03
2.32e+07https://www.airbnb.com/rooms/23173826352       100      Apartment1993Private room1  112FALSETRUENrrebroflexible12.555.71.41e+033.15Brokvarterer3.240.00305-0.0896  3.233.241.73e+031.75e+031.71e+03
2.32e+07https://www.airbnb.com/rooms/23211526452       2150100      House3598Private room1  224TRUETRUEAmager stmoderate12.655.71.96e+033.29Amager3.410.00677-0.122   3.4 3.432.59e+032.67e+032.51e+03
2.32e+07https://www.airbnb.com/rooms/23235538246       100      Other8098Private room1  101FALSETRUEVanlseflexible12.555.7984       2.99Nordvest3.180.00862-0.183   3.163.191.5e+03 1.56e+031.44e+03
2.33e+07https://www.airbnb.com/rooms/23271019399       100      Apartment11294Private room1  111FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.6e+03 3.2 Brokvarterer3.270.00486-0.0621  3.263.271.84e+031.88e+031.8e+03 
2.33e+07https://www.airbnb.com/rooms/23291083379       11040      Condominium5497Private room1  112FALSEFALSEsterbrostrict_14_with_grace_period12.655.71.62e+033.21Brokvarterer3.310.00533-0.0979  3.3 3.322.03e+032.08e+031.98e+03
2.33e+07https://www.airbnb.com/rooms/23291437598       12000      Townhouse3298Private room1  122TRUEFALSEAmager Veststrict_14_with_grace_period12.655.72.59e+033.41Amager3.310.008710.106   3.293.322.03e+032.11e+031.95e+03
2.33e+07https://www.airbnb.com/rooms/23322561299       100      Apartment1297Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.2e+03 3.08Brokvarterer3.240.00309-0.164   3.243.251.75e+031.77e+031.72e+03
2.33e+07https://www.airbnb.com/rooms/23325848598       10150      Condominium3498Private room1  112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.99e+033.48Brokvarterer3.310.005270.171   3.3 3.322.02e+032.07e+031.97e+03
2.34e+07https://www.airbnb.com/rooms/23353930598       100      Apartment2999Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.39e+033.38Brokvarterer3.320.004240.0559  3.313.332.1e+03 2.14e+032.06e+03
2.34e+07https://www.airbnb.com/rooms/23407106399       10100      Apartment10699Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.62e+03       3.3 Brokvarterer3.290.004660.00988 3.283.3 1.95e+031.99e+031.91e+03
2.34e+07https://www.airbnb.com/rooms/23410902452       11000      Apartment2499Private room1  112FALSETRUEIndre Byflexible12.655.71.91e+033.28Center3.380.00406-0.0978  3.373.392.39e+032.43e+032.35e+03
2.34e+07https://www.airbnb.com/rooms/23436840399       250150      Apartment1296Private room1  123FALSEFALSEAmager stflexible12.655.71.65e+033.22Amager3.250.00394-0.0338  3.243.261.78e+031.81e+031.75e+03
2.35e+07https://www.airbnb.com/rooms/23461373598       12750      Apartment2799Private room1  122FALSETRUEIndre Byflexible12.655.72.67e+033.43Center3.380.004060.0472  3.373.392.39e+032.44e+032.35e+03
2.35e+07https://www.airbnb.com/rooms/23492145698       100      Apartment9998Private room1  012TRUETRUEIndre Bymoderate12.655.72.79e+033.45Center3.4 0.005270.0452  3.393.412.52e+032.58e+032.46e+03
2.35e+07https://www.airbnb.com/rooms/23492723299       100      Apartment1491Private room1  112TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.2e+03 3.08Nordvest3.190.00558-0.116   3.183.2 1.56e+031.6e+03 1.52e+03
2.35e+07https://www.airbnb.com/rooms/23494797452       115070      Apartment3099Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.72.24e+033.35Brokvarterer3.290.003530.0563  3.293.3 1.97e+032e+03       1.93e+03
2.35e+07https://www.airbnb.com/rooms/23512954292       1150100      Apartment1297Private room1  112FALSETRUEAmager Vestmoderate12.655.71.72e+033.24Amager3.240.00395-0.00749 3.233.251.75e+031.78e+031.72e+03
2.36e+07https://www.airbnb.com/rooms/23562469452       12000      Apartment4099Private room1  112FALSETRUEsterbromoderate12.655.72.01e+033.3 Brokvarterer3.280.003370.0262  3.273.281.89e+031.92e+031.86e+03
2.36e+07https://www.airbnb.com/rooms/23573487399       2250150      Apartment1094Private room1  112FALSETRUEsterbroflexible12.655.71.85e+033.27Brokvarterer3.240.003060.0283  3.233.241.73e+031.75e+031.71e+03
2.36e+07https://www.airbnb.com/rooms/23589875246       12000      Apartment1395Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.18e+033.07Brokvarterer3.270.00327-0.193   3.263.271.85e+031.88e+031.82e+03
2.36e+07https://www.airbnb.com/rooms/23592812498       13000      Apartment2195Private room1  244FALSETRUENrrebroflexible12.555.72.29e+033.36Brokvarterer3.360.003560.00177 3.353.372.28e+032.32e+032.25e+03
2.36e+07https://www.airbnb.com/rooms/23620883372       12000      Apartment3993Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.69e+033.23Brokvarterer3.270.0033 -0.0411  3.263.271.86e+031.88e+031.83e+03
2.36e+07https://www.airbnb.com/rooms/23643275306       1500      Apartment2393Private room1  112TRUETRUENrrebroflexible12.655.71.27e+033.11Brokvarterer3.270.00408-0.163   3.263.281.85e+031.89e+031.82e+03
2.36e+07https://www.airbnb.com/rooms/23647001498       225075      House6198Private room1  034TRUETRUEBrnshj-Husumflexible12.555.72.24e+033.35West3.220.008270.131   3.2 3.241.66e+031.72e+031.6e+03 
2.37e+07https://www.airbnb.com/rooms/23657190551       1100100      Condominium1293Private room1.5111FALSETRUEIndre Bymoderate12.655.72.7e+03 3.43Center3.4 0.0062 0.0336  3.393.412.5e+03 2.57e+032.43e+03
2.37e+07https://www.airbnb.com/rooms/23663828452       12000      Apartment1597Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.01e+033.3 Brokvarterer3.270.004110.0306  3.263.281.87e+031.91e+031.84e+03
2.37e+07https://www.airbnb.com/rooms/23665966399       1175400      Apartment2899Private room1  111TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.37e+033.53Center3.420.004970.11    3.413.432.62e+032.68e+032.56e+03
2.37e+07https://www.airbnb.com/rooms/23702407777       100      Apartment1593Private room1  112FALSETRUENrrebroflexible12.555.73.11e+033.49Brokvarterer3.240.003050.255   3.233.241.73e+031.75e+031.7e+03 
2.37e+07https://www.airbnb.com/rooms/23729299299       1200120      Apartment2298Private room1  112TRUETRUEFrederiksbergflexible12.555.71.88e+033.27Brokvarterer3.270.00406-0.00142 3.273.281.88e+031.92e+031.85e+03
2.37e+07https://www.airbnb.com/rooms/23736875598       100      Apartment1996Private room1.5102FALSETRUEValbyflexible12.555.72.39e+033.38West3.160.005460.217   3.153.171.45e+031.49e+031.42e+03
2.38e+07https://www.airbnb.com/rooms/23778413352       20149      Apartment3897Private room1  112FALSETRUEAmager Vestmoderate12.655.61.41e+033.15Amager3.250.00397-0.0983  3.243.251.77e+031.8e+03 1.73e+03
2.38e+07https://www.airbnb.com/rooms/23786991452       100      Apartment8298Private room1  112TRUETRUEFrederiksbergflexible12.555.71.81e+033.26Brokvarterer3.280.00426-0.0277  3.283.291.93e+031.96e+031.89e+03
2.38e+07https://www.airbnb.com/rooms/23804616299       100      Apartment1298Private room1  111TRUETRUEValbystrict_14_with_grace_period12.555.71.2e+03 3.08West3.180.00614-0.0978  3.163.191.5e+03 1.54e+031.46e+03
2.39e+07https://www.airbnb.com/rooms/23853113252       170100      Apartment3695Private room1  111FALSEFALSEAmager Veststrict_14_with_grace_period12.655.61.48e+033.17Amager3.230.00426-0.0571  3.223.241.69e+031.72e+031.65e+03
2.39e+07https://www.airbnb.com/rooms/23874162332       1045      Apartment1394Private room1.5112FALSETRUEValbymoderate12.555.71.51e+033.18West3.180.0056 -0.0064  3.173.2 1.53e+031.57e+031.49e+03
2.39e+07https://www.airbnb.com/rooms/23890380352       250150      Apartment2298Private room1  112TRUETRUEVanlsemoderate12.555.71.46e+033.16Nordvest3.190.00537-0.0213  3.173.2 1.53e+031.57e+031.49e+03
2.39e+07https://www.airbnb.com/rooms/23907082518       100      Apartment2697Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.07e+033.32Brokvarterer3.3 0.004120.0155  3.293.312e+03       2.04e+031.96e+03
2.39e+07https://www.airbnb.com/rooms/23907955272       1225100      Apartment3698Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.555.71.71e+033.23Brokvarterer3.320.00419-0.089   3.313.332.1e+03 2.14e+032.06e+03
2.39e+07https://www.airbnb.com/rooms/23910241306       1400      Apartment12595Private room1  121FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.26e+033.1 Brokvarterer3.270.0052 -0.167   3.263.281.86e+031.9e+03 1.81e+03
2.4e+07 https://www.airbnb.com/rooms/23950448498       11000      Apartment22100Private room1  112FALSETRUEAmager stflexible12.655.72.09e+033.32Amager3.220.003870.0993  3.213.231.66e+031.69e+031.64e+03
2.4e+07 https://www.airbnb.com/rooms/23988750173       10222      Apartment3093Private room1  111TRUETRUEFrederiksbergflexible12.555.71.58e+033.2 Brokvarterer3.230.00416-0.0349  3.233.241.71e+031.74e+031.68e+03
2.4e+07 https://www.airbnb.com/rooms/23994265498       1500      Apartment2097Private room1  112FALSETRUENrrebroflexible12.655.72.04e+033.31Brokvarterer3.240.003080.0665  3.243.251.75e+031.78e+031.73e+03
2.4e+07 https://www.airbnb.com/rooms/24030154452       1200200      Apartment6897Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.81e+033.45Brokvarterer3.330.004220.122   3.323.342.12e+032.16e+032.08e+03
2.41e+07https://www.airbnb.com/rooms/24060593252       100      Condominium3298Private room1.5222TRUETRUEBrnshj-Husummoderate12.555.71.01e+033   West3.280.00742-0.277   3.273.3 1.91e+031.97e+031.85e+03
2.41e+07https://www.airbnb.com/rooms/24073200591       1350      Apartment5996Private room1  101FALSETRUEVesterbro-Kongens Enghaveflexible12.655.62.4e+03 3.38Brokvarterer3.210.003550.167   3.213.221.63e+031.66e+031.61e+03
2.41e+07https://www.airbnb.com/rooms/24073846352       100      Apartment3897Private room1  012FALSETRUEAmager Vestflexible12.655.71.41e+033.15Amager3.170.00428-0.026   3.173.181.49e+031.52e+031.47e+03
2.41e+07https://www.airbnb.com/rooms/24074203352       100      Apartment3297Private room1  111FALSETRUEAmager stflexible12.655.71.41e+033.15Amager3.180.00394-0.0345  3.183.191.52e+031.55e+031.5e+03 
2.41e+07https://www.airbnb.com/rooms/24075058299       100      Condominium1293Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.655.71.2e+03 3.08Brokvarterer3.290.00601-0.211   3.283.3 1.94e+032e+03       1.89e+03
2.41e+07https://www.airbnb.com/rooms/24145034385       2300100      Apartment6498Private room1  254TRUETRUEBrnshj-Husumflexible12.555.71.84e+033.26West3.290.00605-0.0271  3.283.3 1.96e+032.01e+031.91e+03
2.42e+07https://www.airbnb.com/rooms/24194670498       100      Apartment10100Private room1  112FALSETRUENrrebroflexible12.555.71.99e+033.3 Brokvarterer3.250.0032 0.0535  3.243.251.76e+031.79e+031.74e+03
2.42e+07https://www.airbnb.com/rooms/24214597498       1500      Apartment11100Private room1  112FALSEFALSEFrederiksbergflexible12.555.72.04e+033.31Brokvarterer3.250.0032 0.0641  3.243.251.76e+031.79e+031.74e+03
2.42e+07https://www.airbnb.com/rooms/24218689412       275149      Apartment2998Private room1  112TRUETRUEIndre Bymoderate12.655.71.72e+033.24Center3.430.00476-0.198   3.423.442.72e+032.78e+032.66e+03
2.42e+07https://www.airbnb.com/rooms/24225655352       10100      Apartment5496Private room1  113FALSEFALSEBispebjergflexible12.555.71.81e+033.26Nordvest3.170.004930.0897  3.163.181.47e+031.5e+03 1.44e+03
2.42e+07https://www.airbnb.com/rooms/24238721239       110050      Apartment1090Private room0.5112FALSEFALSENrrebroflexible12.555.71.26e+033.1 Brokvarterer3.210.00383-0.107   3.2 3.211.61e+031.64e+031.58e+03
2.43e+07https://www.airbnb.com/rooms/24276151259       115060      Condominium12100Private room1  112FALSETRUENrrebroflexible12.555.71.43e+033.15Brokvarterer3.260.00512-0.104   3.253.271.81e+031.86e+031.77e+03
2.43e+07https://www.airbnb.com/rooms/24280324352       100      Apartment12100Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.71.41e+033.15Brokvarterer3.320.00441-0.173   3.313.332.1e+03 2.14e+032.05e+03
2.44e+07https://www.airbnb.com/rooms/24383331292       100      Apartment2291Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.17e+033.07Brokvarterer3.2 0.00321-0.133   3.193.211.59e+031.61e+031.56e+03
2.44e+07https://www.airbnb.com/rooms/24423873412       100      Apartment1290Private room1  112TRUETRUEAmager Vestmoderate12.655.61.65e+033.22Amager3.260.00487-0.0458  3.253.271.83e+031.87e+031.79e+03
2.44e+07https://www.airbnb.com/rooms/24437935299       12500      Apartment6899Private room1  122TRUETRUEAmager stflexible12.655.71.45e+033.16Amager3.260.00465-0.097   3.253.271.81e+031.85e+031.77e+03
2.44e+07https://www.airbnb.com/rooms/24443010392       11500      Apartment1098Private room1  112FALSETRUEsterbromoderate12.655.71.72e+033.24Brokvarterer3.270.00333-0.0351  3.263.281.86e+031.89e+031.83e+03
2.45e+07https://www.airbnb.com/rooms/24463943472       21000      Apartment60100Private room1.5112TRUETRUENrrebromoderate12.655.71.99e+033.3 Brokvarterer3.340.00455-0.0388  3.333.352.17e+032.22e+032.13e+03
2.45e+07https://www.airbnb.com/rooms/24463988279       100      Apartment1693Private room1  122FALSETRUEFrederiksbergflexible12.555.71.12e+033.05Brokvarterer3.240.00305-0.19    3.233.241.73e+031.75e+031.7e+03 
2.45e+07https://www.airbnb.com/rooms/24488606252       11200      Apartment1899Private room1  111FALSETRUEFrederiksbergmoderate12.555.71.13e+033.05Brokvarterer3.240.00344-0.185   3.233.241.73e+031.75e+031.7e+03 
2.45e+07https://www.airbnb.com/rooms/24495170651       2075      Other6299Private room1  132TRUETRUEAmager stmoderate12.655.72.6e+03 3.42Amager3.360.008120.0592  3.343.372.27e+032.36e+032.19e+03
2.45e+07https://www.airbnb.com/rooms/24503591598       1250250      Apartment1798Private room1  112TRUEFALSENrrebrostrict_14_with_grace_period12.555.73.64e+033.56Brokvarterer3.320.004330.242   3.313.332.09e+032.13e+032.05e+03
2.46e+07https://www.airbnb.com/rooms/24559287605       100      Apartment17100Private room1  112TRUETRUEsterbroflexible12.655.72.42e+033.38Brokvarterer3.280.004120.107   3.273.281.89e+031.93e+031.85e+03
2.46e+07https://www.airbnb.com/rooms/24567043146       18050      Apartment13292Private room1  122FALSEFALSENrrebroflexible12.555.7864       2.94Brokvarterer3.260.00522-0.32    3.253.271.8e+03 1.85e+031.76e+03
2.46e+07https://www.airbnb.com/rooms/24573443492       12000      Apartment1398Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.17e+033.34Brokvarterer3.240.004230.0989  3.233.251.73e+031.76e+031.69e+03
2.46e+07https://www.airbnb.com/rooms/24616521279       1300      Apartment2395Private room1  112FALSETRUEAmager stflexible12.655.71.15e+033.06Amager3.210.00375-0.156   3.213.221.64e+031.67e+031.61e+03
2.47e+07https://www.airbnb.com/rooms/24653444498       10150      Apartment2099Private room1  111TRUEFALSEIndre Bystrict_14_with_grace_period12.655.72.59e+033.41Center3.420.00503-0.0032  3.413.432.61e+032.67e+032.55e+03
2.47e+07https://www.airbnb.com/rooms/24656698505       20186      Condominium10597Private room1  133TRUETRUEsterbroflexible12.655.72.02e+033.31Brokvarterer3.340.0061 -0.0304  3.323.352.17e+032.23e+032.11e+03
2.47e+07https://www.airbnb.com/rooms/24660041312       100      Apartment2298Private room1  111FALSETRUENrrebroflexible12.655.71.25e+033.1 Brokvarterer3.210.00324-0.113   3.2 3.221.62e+031.64e+031.6e+03 
2.47e+07https://www.airbnb.com/rooms/24669603452       2275235      Condominium2498Private room1  123TRUEFALSEsterbromoderate12.655.72.08e+033.32Brokvarterer3.350.00578-0.0315  3.343.362.24e+032.3e+03 2.18e+03
2.47e+07https://www.airbnb.com/rooms/24746456591       100      Apartment5197Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.36e+033.37Brokvarterer3.280.003990.0954  3.273.291.9e+03 1.93e+031.86e+03
2.48e+07https://www.airbnb.com/rooms/24775429299       1150150      Apartment1196Private room1  112FALSETRUEAmager stmoderate12.655.71.95e+033.29Amager3.240.003940.0481  3.233.251.74e+031.77e+031.71e+03
2.48e+07https://www.airbnb.com/rooms/24776774452       10200      Apartment2296Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.61e+033.42Brokvarterer3.270.003260.147   3.263.281.86e+031.89e+031.83e+03
2.48e+07https://www.airbnb.com/rooms/24799574299       11000      Apartment2493Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.3e+03 3.11Brokvarterer3.280.00344-0.172   3.283.291.93e+031.96e+031.9e+03 
2.49e+07https://www.airbnb.com/rooms/24913355452       1250200      Apartment2896Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.86e+033.46Brokvarterer3.270.004020.183   3.273.281.88e+031.91e+031.84e+03
2.49e+07https://www.airbnb.com/rooms/24929917538       189112      Apartment1699Private room1  112TRUETRUEIndre Bymoderate12.655.72.69e+033.43Center3.430.00489-0.00373 3.423.442.71e+032.77e+032.65e+03
2.5e+07 https://www.airbnb.com/rooms/24973439252       100      House1393Private room0.5111FALSETRUEVanlseflexible12.555.71.01e+033   Nordvest3.080.00755-0.0737  3.063.091.19e+031.24e+031.15e+03
2.5e+07 https://www.airbnb.com/rooms/24990957352       100      Apartment22995Private room1  112FALSETRUEBrnshj-Husummoderate12.555.71.41e+033.15West3.2 0.00939-0.0478  3.183.211.57e+031.64e+031.51e+03
2.5e+07 https://www.airbnb.com/rooms/24998199399       14500      House1794Private room1  112FALSETRUEVanlsemoderate12.555.72.05e+033.31Nordvest3.170.0069 0.142   3.153.181.47e+031.52e+031.43e+03
2.5e+07 https://www.airbnb.com/rooms/25038664751       1100400      Apartment1293Private room1  111FALSETRUEAmager Vestflexible12.655.74.7e+03 3.67Amager3.170.003870.498   3.173.181.49e+031.52e+031.47e+03
2.51e+07https://www.airbnb.com/rooms/25113583299       1500      Apartment1397Private room1  112FALSETRUEFrederiksbergmoderate12.555.71.25e+033.1 Brokvarterer3.270.00329-0.174   3.263.281.86e+031.89e+031.83e+03
2.52e+07https://www.airbnb.com/rooms/25180496399       10200      House2397Private room2  234TRUETRUEValbymoderate12.555.72.4e+03 3.38West3.380.00739-0.00318 3.373.4 2.41e+032.5e+03 2.33e+03
2.52e+07https://www.airbnb.com/rooms/25196286332       100      Apartment7596Private room1  112FALSETRUEAmager Vestmoderate12.655.61.33e+033.12Amager3.250.00437-0.129   3.243.261.79e+031.82e+031.75e+03
2.52e+07https://www.airbnb.com/rooms/25241611432       1600      Apartment6196Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.79e+033.25Brokvarterer3.290.0037 -0.0426  3.293.3 1.97e+032.01e+031.94e+03
2.53e+07https://www.airbnb.com/rooms/25272377498       100      Apartment11100Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.99e+033.3 Amager3.270.004210.0343  3.263.271.84e+031.88e+031.81e+03
2.53e+07https://www.airbnb.com/rooms/25310752399       100      Other1596Private room1  122FALSETRUEValbyflexible12.555.71.6e+03 3.2 West3.210.00838-0.00465 3.193.221.61e+031.68e+031.55e+03
2.53e+07https://www.airbnb.com/rooms/25334142724       100      Apartment3199Private room1  112TRUETRUEAmager Vestflexible12.655.72.9e+03 3.46Amager3.250.004550.211   3.243.261.78e+031.82e+031.75e+03
2.54e+07https://www.airbnb.com/rooms/25377352452       100      Apartment1597Private room1  111FALSETRUEValbyflexible12.555.71.81e+033.26West3.1 0.005190.158   3.093.111.26e+031.29e+031.23e+03
2.54e+07https://www.airbnb.com/rooms/25410304996       4350200      Condominium11392Private room1  124FALSETRUEIndre Bystrict_14_with_grace_period12.655.74.33e+033.64Center3.510.006720.123   3.5 3.533.27e+033.37e+033.17e+03
2.54e+07https://www.airbnb.com/rooms/25414560399       11500      Apartment1898Private room1  133TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.75e+033.24Brokvarterer3.310.00427-0.0678  3.3 3.322.04e+032.08e+032e+03       
2.54e+07https://www.airbnb.com/rooms/25434051352       100      House2592Private room1  112FALSETRUEVanlseflexible12.555.71.41e+033.15Nordvest3.140.006810.00825 3.133.151.38e+031.42e+031.34e+03
2.54e+07https://www.airbnb.com/rooms/25436765299       1100200      Apartment2697Private room1  112TRUETRUENrrebroflexible12.655.72.1e+03 3.32Brokvarterer3.270.004030.0474  3.273.281.88e+031.91e+031.85e+03
2.55e+07https://www.airbnb.com/rooms/25450717319       12000      Apartment2598Private room1  112TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.48e+033.17Nordvest3.2 0.00548-0.0353  3.193.221.6e+03 1.64e+031.56e+03
2.55e+07https://www.airbnb.com/rooms/25453852518       100      Apartment5096Private room1  112FALSETRUEBrnshj-Husummoderate12.555.72.07e+033.32West3.170.005370.149   3.163.181.47e+031.51e+031.43e+03
2.55e+07https://www.airbnb.com/rooms/25472279598       1050      Apartment2692Private room1  112TRUETRUEFrederiksbergflexible12.655.72.59e+033.41Brokvarterer3.270.004080.146   3.263.281.85e+031.89e+031.82e+03
2.55e+07https://www.airbnb.com/rooms/25475287352       2100200      Apartment4492Private room1  113FALSEFALSEAmager Vestflexible12.655.61.51e+033.18Amager3.250.00403-0.072   3.243.261.78e+031.81e+031.75e+03
2.55e+07https://www.airbnb.com/rooms/25476656551       10300      Other2498Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.63.4e+03 3.53Amager3.340.007980.194   3.323.352.18e+032.26e+032.1e+03 
2.55e+07https://www.airbnb.com/rooms/25509436498       100      House2394Private room1  112TRUETRUEValbymoderate12.555.71.99e+033.3 West3.210.0073 0.091   3.193.221.62e+031.67e+031.56e+03
2.55e+07https://www.airbnb.com/rooms/25524405299       1300250      Condominium6598Private room1  112TRUETRUEsterbromoderate12.655.72.5e+03 3.4 Brokvarterer3.320.005580.076   3.313.332.1e+03 2.15e+032.04e+03
2.56e+07https://www.airbnb.com/rooms/25595163352       11000      Apartment1896Private room1  122TRUETRUEsterbrostrict_14_with_grace_period12.655.71.51e+033.18Brokvarterer3.320.00432-0.139   3.313.332.08e+032.12e+032.03e+03
2.56e+07https://www.airbnb.com/rooms/25601750485       10149      Apartment2294Private room1  012FALSETRUENrrebromoderate12.555.72.54e+033.4 Brokvarterer3.220.003810.183   3.213.231.67e+031.69e+031.64e+03
2.58e+07https://www.airbnb.com/rooms/25764697638       100      Apartment11100Private room2  122FALSETRUEAmager Vestmoderate12.655.72.55e+033.41Amager3.3 0.005760.107   3.293.311.99e+032.05e+031.94e+03
2.58e+07https://www.airbnb.com/rooms/25768380352       100      Apartment1298Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.41e+033.15Brokvarterer3.240.00312-0.0949  3.243.251.75e+031.78e+031.73e+03
2.58e+07https://www.airbnb.com/rooms/25795163399       11000      Apartment5999Private room1  112TRUETRUEFrederiksbergflexible12.555.71.7e+03 3.23Brokvarterer3.280.00405-0.0528  3.273.291.92e+031.95e+031.88e+03
2.58e+07https://www.airbnb.com/rooms/25795355352       13000      Apartment1496Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.71e+033.23Brokvarterer3.270.00328-0.0357  3.263.271.85e+031.88e+031.83e+03
2.58e+07https://www.airbnb.com/rooms/25839064797       1349100      Apartment1599Private room1  122FALSETRUEIndre Bymoderate12.655.73.94e+033.6 Center3.4 0.004220.191   3.4 3.412.53e+032.58e+032.49e+03
2.59e+07https://www.airbnb.com/rooms/25851499279       14250      Apartment1497Private room1  112TRUETRUEIndre Byflexible12.655.71.54e+033.19Center3.4 0.0048 -0.216   3.393.412.53e+032.59e+032.48e+03
2.59e+07https://www.airbnb.com/rooms/25860958306       100      Apartment2791Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.22e+033.09Brokvarterer3.2 0.00323-0.113   3.193.211.59e+031.61e+031.57e+03
2.59e+07https://www.airbnb.com/rooms/25888835199       100      Apartment1593Private room1  111FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.7796       2.9 West3.140.0055 -0.239   3.133.151.38e+031.42e+031.35e+03
2.59e+07https://www.airbnb.com/rooms/25901897352       100      Condominium13100Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.41e+033.15Brokvarterer3.260.00512-0.11    3.253.271.81e+031.86e+031.77e+03
2.6e+07 https://www.airbnb.com/rooms/25974845399       100      Townhouse2995Private room1  112TRUETRUEAmager Vestmoderate12.655.61.6e+03 3.2 Amager3.280.00863-0.0817  3.273.3 1.93e+032e+03       1.85e+03
2.6e+07 https://www.airbnb.com/rooms/26015249498       11000      Apartment1398Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.72.09e+033.32Brokvarterer3.290.003520.0312  3.283.3 1.95e+031.98e+031.92e+03
2.61e+07https://www.airbnb.com/rooms/26058894319       1150175      Apartment4799Private room1  112TRUETRUEsterbromoderate12.655.72.13e+033.33Brokvarterer3.310.004040.0204  3.3 3.322.03e+032.07e+031.99e+03
2.61e+07https://www.airbnb.com/rooms/26090392711       100      House5092Private room1  244FALSETRUEAmager Vestmoderate12.655.62.84e+033.45Amager3.380.006390.0753  3.373.392.39e+032.46e+032.32e+03
2.61e+07https://www.airbnb.com/rooms/26091194452       100      Apartment4796Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.81e+033.26Brokvarterer3.280.00398-0.0191  3.273.281.89e+031.92e+031.86e+03
2.61e+07https://www.airbnb.com/rooms/26091466751       100      House1198Private room1  113FALSEFALSEValbystrict_14_with_grace_period12.555.73e+03       3.48West3.240.007040.241   3.223.251.72e+031.78e+031.67e+03
2.61e+07https://www.airbnb.com/rooms/26116212551       11000      Apartment2498Private room1  101TRUETRUEAmager Vestmoderate12.655.72.3e+03 3.36Amager3.240.004770.123   3.233.251.74e+031.77e+031.7e+03 
2.61e+07https://www.airbnb.com/rooms/26116747299       100      Apartment1892Private room1  111FALSETRUEAmager Vestflexible12.655.71.2e+03 3.08Amager3.170.00388-0.0964  3.173.181.49e+031.52e+031.47e+03
2.61e+07https://www.airbnb.com/rooms/26127713452       100      Apartment3892Private room1  112FALSETRUENrrebroflexible12.555.71.81e+033.26Brokvarterer3.240.003140.0171  3.233.251.74e+031.76e+031.71e+03
2.62e+07https://www.airbnb.com/rooms/26219800498       100      Apartment7599Private room1  123TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer3.320.00434-0.0216  3.313.332.09e+032.14e+032.05e+03
2.63e+07https://www.airbnb.com/rooms/26287612352       100      Apartment2699Private room1  112TRUETRUEFrederiksbergmoderate12.655.71.41e+033.15Brokvarterer3.3 0.00413-0.155   3.3 3.312.01e+032.05e+031.97e+03
2.63e+07https://www.airbnb.com/rooms/26301533299       100      Apartment1196Private room1  111FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.2e+03 3.08Center3.380.00442-0.304   3.373.392.41e+032.46e+032.36e+03
2.63e+07https://www.airbnb.com/rooms/26341942452       21500      Apartment2399Private room1  012FALSETRUEFrederiksbergmoderate12.555.71.96e+033.29Brokvarterer3.230.003880.0636  3.223.241.69e+031.72e+031.66e+03
2.63e+07https://www.airbnb.com/rooms/26348659359       1112186      Apartment17100Private room1  112FALSETRUENrrebroflexible12.655.72.29e+033.36Brokvarterer3.250.003190.113   3.243.251.77e+031.79e+031.74e+03
2.64e+07https://www.airbnb.com/rooms/26378192299       1100200      Apartment2195Private room1  111FALSETRUEIndre Byflexible12.655.72.1e+03 3.32Center3.340.00411-0.0153  3.333.342.17e+032.21e+032.13e+03
2.65e+07https://www.airbnb.com/rooms/26462213259       13000      Apartment1794Private room1  114FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.71.34e+033.13Brokvarterer3.360.00411-0.231   3.353.362.27e+032.32e+032.23e+03
2.65e+07https://www.airbnb.com/rooms/26471013498       1300100      Other1397Private room2  346FALSETRUEBrnshj-Husummoderate12.555.72.69e+033.43West3.520.00913-0.0933  3.513.543.34e+033.48e+033.2e+03 
2.65e+07https://www.airbnb.com/rooms/26522009279       11120      Apartment3393Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.61.23e+033.09Amager3.260.0041 -0.17    3.253.271.82e+031.85e+031.78e+03
2.65e+07https://www.airbnb.com/rooms/26528638452       20330      Apartment2793Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.61.81e+033.26Brokvarterer3.3 0.00416-0.0387  3.293.3 1.98e+032.01e+031.94e+03
2.66e+07https://www.airbnb.com/rooms/26580583299       1080      Apartment2698Private room1  112TRUETRUEAmager Vestflexible12.655.71.52e+033.18Amager3.250.00456-0.068   3.243.261.77e+031.81e+031.74e+03
2.66e+07https://www.airbnb.com/rooms/266456481.2e+03 100      Apartment1098Private room1  224TRUETRUEFrederiksbergmoderate12.555.74.81e+033.68Brokvarterer3.420.004630.265   3.413.432.61e+032.67e+032.56e+03
2.67e+07https://www.airbnb.com/rooms/26674573452       4250200      Apartment1897Private room1  122TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.62.06e+033.31Brokvarterer3.320.00432-0.00488 3.313.332.08e+032.12e+032.04e+03
2.67e+07https://www.airbnb.com/rooms/26699386897       1100100      Condominium1597Private room1.5144TRUETRUENrrebromoderate12.555.74.09e+033.61Brokvarterer3.410.006370.202   3.4 3.422.57e+032.64e+032.5e+03 
2.68e+07https://www.airbnb.com/rooms/26754985352       24000      Apartment3496Private room1  112TRUETRUEAmager Vestmoderate12.655.71.81e+033.26Amager3.270.0046 -0.0172  3.273.281.88e+031.92e+031.84e+03
2.68e+07https://www.airbnb.com/rooms/26764365698       11500      Apartment11100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.72.94e+033.47Brokvarterer3.270.003390.196   3.273.281.87e+031.9e+03 1.85e+03
2.68e+07https://www.airbnb.com/rooms/26775780485       22100      Apartment6499Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.15e+033.33Brokvarterer3.280.003640.0518  3.273.291.91e+031.94e+031.88e+03
2.69e+07https://www.airbnb.com/rooms/26861850751       100      Apartment1499Private room1  122FALSETRUEIndre Byflexible12.655.73e+03       3.48Center3.380.004080.101   3.373.382.38e+032.42e+032.34e+03
2.69e+07https://www.airbnb.com/rooms/26920626399       1100200      House3199Private room1  112TRUETRUEVanlsemoderate12.555.72.5e+03 3.4 Nordvest3.210.007360.19    3.193.221.61e+031.66e+031.56e+03
2.69e+07https://www.airbnb.com/rooms/26928875651       12500      Apartment3099Private room1  112TRUETRUEIndre Byflexible12.655.72.85e+033.46Center3.410.0047 0.0467  3.4 3.422.56e+032.62e+032.51e+03
2.7e+07 https://www.airbnb.com/rooms/27007041299       10200      Apartment51100Private room1  112TRUETRUEVanlseflexible12.555.72e+03       3.3 Nordvest3.170.0053 0.134   3.163.181.46e+031.5e+03 1.43e+03
2.7e+07 https://www.airbnb.com/rooms/27038918598       2190125      Apartment21100Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.62.58e+033.41Brokvarterer3.3 0.004180.108   3.3 3.312.01e+032.05e+031.98e+03
2.71e+07https://www.airbnb.com/rooms/27060073352       120050      Apartment1096Private room1  112FALSETRUENrrebromoderate12.655.71.81e+033.26Brokvarterer3.270.0033 -0.0103  3.263.271.85e+031.88e+031.82e+03
2.71e+07https://www.airbnb.com/rooms/27073990498       11000      Apartment1298Private room1  122FALSETRUEAmager Vestflexible12.655.72.09e+033.32Amager3.220.0038 0.104   3.213.221.65e+031.68e+031.62e+03
2.71e+07https://www.airbnb.com/rooms/27096271299       11000      Other1497Private room1.5111TRUETRUEVanlsemoderate12.555.71.3e+03 3.11Nordvest3.250.00894-0.134   3.233.261.76e+031.84e+031.69e+03
2.71e+07https://www.airbnb.com/rooms/27117348339       1500      Apartment1891Private room1.5111FALSETRUEAmager Vestflexible12.655.61.41e+033.15Amager3.2 0.00446-0.0514  3.193.211.58e+031.61e+031.55e+03
2.71e+07https://www.airbnb.com/rooms/27130140419       2095      Apartment3391Private room1  122FALSEFALSENrrebromoderate12.555.71.68e+033.22Brokvarterer3.260.0033 -0.0406  3.263.271.84e+031.87e+031.81e+03
2.72e+07https://www.airbnb.com/rooms/27157444299       100      Apartment1291Private room1  112FALSETRUEFrederiksbergflexible12.655.71.2e+03 3.08Brokvarterer3.230.00308-0.157   3.233.241.72e+031.74e+031.69e+03
2.72e+07https://www.airbnb.com/rooms/27162207352       25090      Condominium4191Private room1  112FALSETRUEsterbrostrict_14_with_grace_period12.655.71.46e+033.16Brokvarterer3.3 0.00528-0.134   3.293.311.98e+032.03e+031.94e+03
2.72e+07https://www.airbnb.com/rooms/27182932392       100      Apartment1096Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.71.57e+033.2 Amager3.260.00413-0.0643  3.253.271.82e+031.85e+031.78e+03
2.72e+07https://www.airbnb.com/rooms/27195803452       2300200      Apartment1196Private room1  134FALSETRUENrrebromoderate12.655.72.11e+033.32Brokvarterer3.340.00403-0.0156  3.333.352.19e+032.23e+032.15e+03
2.73e+07https://www.airbnb.com/rooms/27324748332       100      Apartment1699Private room1  113TRUEFALSEIndre Byflexible12.655.71.33e+033.12Center3.440.00493-0.319   3.433.452.77e+032.83e+032.71e+03
2.73e+07https://www.airbnb.com/rooms/27349949452       2100100      House2298Private room1  122TRUETRUEBrnshj-Husumflexible12.555.71.91e+033.28West3.190.007210.0942  3.173.2 1.54e+031.59e+031.49e+03
2.74e+07https://www.airbnb.com/rooms/27376697352       1100125      Apartment5597Private room1  123FALSETRUEIndre Byflexible12.655.72.01e+033.3 Center3.420.00431-0.114   3.413.432.61e+032.66e+032.56e+03
2.74e+07https://www.airbnb.com/rooms/27415047452       11500      Apartment2299Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.96e+033.29Brokvarterer3.280.004070.0159  3.273.281.89e+031.92e+031.85e+03
2.74e+07https://www.airbnb.com/rooms/27417747651       1150100      Apartment26100Private room1  112TRUETRUENrrebromoderate12.555.73.15e+033.5 Brokvarterer3.3 0.004140.194   3.3 3.312.02e+032.06e+031.98e+03
2.74e+07https://www.airbnb.com/rooms/27429498923       2133326      Apartment6495Private room1  133FALSETRUEIndre Bymoderate12.655.73.82e+033.58Center3.440.004420.14    3.433.452.77e+032.83e+032.72e+03
2.75e+07https://www.airbnb.com/rooms/27462902724       2172149      Apartment11996Private room1.5113FALSETRUENrrebroflexible12.655.73.07e+033.49Brokvarterer3.320.005360.165   3.313.332.1e+03 2.15e+032.05e+03
2.75e+07https://www.airbnb.com/rooms/27477327399       10350      Apartment1795Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.63e+03       3.48Brokvarterer3.3 0.004210.18    3.293.311.98e+032.02e+031.94e+03
2.75e+07https://www.airbnb.com/rooms/27504405492       215099      Apartment2493Private room1  114FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.12e+033.33Brokvarterer3.310.003830.0151  3.3 3.322.05e+032.08e+032.01e+03
2.75e+07https://www.airbnb.com/rooms/27539326312       1150100      Apartment7593Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.8e+03 3.25Brokvarterer3.290.00391-0.0386  3.293.3 1.97e+032e+03       1.93e+03
2.76e+07https://www.airbnb.com/rooms/27567537452       100      Apartment2297Private room1  112FALSETRUEAmager Vestflexible12.655.61.81e+033.26Amager3.220.003780.0399  3.213.221.65e+031.68e+031.62e+03
2.76e+07https://www.airbnb.com/rooms/27585955498       100      Apartment3599Private room1  112TRUETRUEsterbromoderate12.655.71.99e+033.3 Brokvarterer3.310.00407-0.0058  3.3 3.312.02e+032.06e+031.98e+03
2.77e+07https://www.airbnb.com/rooms/27673264797       100      Apartment1392Private room1  112FALSETRUEIndre Byflexible12.655.73.19e+033.5 Center3.370.004  0.136   3.363.382.33e+032.37e+032.29e+03
2.77e+07https://www.airbnb.com/rooms/27673730345       11250      Condominium2499Private room1  122TRUETRUEsterbromoderate12.655.71.5e+03 3.18Brokvarterer3.320.00566-0.138   3.3 3.332.07e+032.12e+032.02e+03
2.77e+07https://www.airbnb.com/rooms/27689228724       2150100      Apartment12095Private room1.5112FALSETRUENrrebroflexible12.655.73.05e+033.48Brokvarterer3.280.005310.199   3.273.291.93e+031.97e+031.88e+03
2.78e+07https://www.airbnb.com/rooms/27801239498       2150200      Apartment8996Private room1  224TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.14e+033.33Brokvarterer3.450.0047 -0.116   3.443.462.8e+03 2.86e+032.74e+03
2.78e+07https://www.airbnb.com/rooms/27827764319       115060      Townhouse1899Private room1  112TRUETRUEValbyflexible12.555.71.67e+033.22West3.180.009350.041   3.163.2 1.52e+031.58e+031.45e+03
2.78e+07https://www.airbnb.com/rooms/27841489498       100      Apartment1290Private room1  112FALSETRUEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer3.230.003110.0662  3.233.241.71e+031.73e+031.69e+03
2.79e+07https://www.airbnb.com/rooms/27865214352       100      Condominium7797Private room1  111TRUETRUEsterbroflexible12.655.71.41e+033.15Brokvarterer3.260.00581-0.111   3.253.271.82e+031.86e+031.77e+03
2.79e+07https://www.airbnb.com/rooms/27893640498       10200      House4198Private room1  114FALSETRUEAmager Vestflexible12.655.62.79e+033.45Amager3.310.006710.133   3.3 3.332.05e+032.12e+031.99e+03
2.79e+07https://www.airbnb.com/rooms/27922276319       112050      Apartment2199Private room1  112FALSEFALSEsterbrostrict_14_with_grace_period12.655.71.6e+03 3.2 Brokvarterer3.290.00352-0.089   3.293.3 1.96e+031.99e+031.93e+03
2.8e+07 https://www.airbnb.com/rooms/27955839372       150125      Apartment2195Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.72.04e+033.31Brokvarterer3.240.003050.0681  3.243.251.74e+031.77e+031.72e+03
2.8e+07 https://www.airbnb.com/rooms/28013076372       100      Apartment3998Private room1  112TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.49e+033.17Brokvarterer3.320.00418-0.151   3.323.332.1e+03 2.14e+032.07e+03
2.8e+07 https://www.airbnb.com/rooms/28041836452       1100150      Apartment4498Private room1  111TRUETRUEVesterbro-Kongens Enghaveflexible12.555.72.51e+033.4 Brokvarterer3.240.0041 0.157   3.233.251.75e+031.78e+031.72e+03
2.8e+07 https://www.airbnb.com/rooms/28042806399       100      Apartment12896Private room1  112TRUETRUEIndre Bymoderate12.655.71.6e+03 3.2 Center3.450.00538-0.245   3.443.462.81e+032.88e+032.74e+03
2.81e+07https://www.airbnb.com/rooms/28057934452       10200      Apartment2099Private room1.5112TRUETRUEsterbromoderate12.655.72.61e+033.42Brokvarterer3.330.004630.0872  3.323.342.13e+032.18e+032.09e+03
2.81e+07https://www.airbnb.com/rooms/28133361751       2100200      Apartment8597Private room1  113TRUEFALSEAmager stmoderate12.655.73.1e+03 3.49Amager3.320.004890.172   3.313.332.09e+032.14e+032.05e+03
2.82e+07https://www.airbnb.com/rooms/28158305452       1250250      Apartment2091Private room1  111FALSETRUEVesterbro-Kongens Enghaveflexible12.655.73.06e+033.49Brokvarterer3.2 0.003210.286   3.193.211.58e+031.61e+031.56e+03
2.82e+07https://www.airbnb.com/rooms/28177829399       1100175      Apartment1293Private room1.5112FALSETRUEFrederiksbergstrict_14_with_grace_period12.555.72.4e+03 3.38Brokvarterer3.310.004010.0703  3.3 3.322.04e+032.08e+032e+03       
2.82e+07https://www.airbnb.com/rooms/28182299279       15050      Apartment1096Private room1  112FALSEFALSEAmager stmoderate12.655.71.37e+033.14Amager3.240.00394-0.105   3.233.251.74e+031.77e+031.71e+03
2.82e+07https://www.airbnb.com/rooms/28248912598       2200200      Apartment1494Private room1  122TRUETRUEBispebjergstrict_14_with_grace_period12.555.72.59e+033.41Nordvest3.2 0.005540.216   3.193.211.57e+031.61e+031.54e+03
2.83e+07https://www.airbnb.com/rooms/28281614651       11500      Apartment1891Private room1  224TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.75e+033.44Brokvarterer3.430.004690.0122  3.423.442.68e+032.74e+032.62e+03
2.84e+07https://www.airbnb.com/rooms/28397812199       1140120      Apartment1096Private room1  112FALSETRUEBispebjergstrict_14_with_grace_period12.555.71.42e+033.15Nordvest3.170.00488-0.0187  3.163.181.48e+031.51e+031.45e+03
2.86e+07https://www.airbnb.com/rooms/28578399578       100      Apartment1198Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.31e+033.36Brokvarterer3.270.004150.0912  3.263.281.87e+031.91e+031.84e+03
2.86e+07https://www.airbnb.com/rooms/28621813299       1200160      Apartment3095Private room1  122TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.04e+033.31Brokvarterer3.320.00423-0.00898 3.313.332.08e+032.12e+032.04e+03
2.87e+07https://www.airbnb.com/rooms/28684881498       11000      Apartment1599Private room1  112TRUETRUEsterbroflexible12.655.72.09e+033.32Brokvarterer3.270.004130.0458  3.273.281.88e+031.92e+031.85e+03
2.87e+07https://www.airbnb.com/rooms/28691380399       21000      Apartment5597Private room1.5112TRUETRUENrrebromoderate12.655.71.7e+03 3.23Brokvarterer3.330.00452-0.103   3.323.342.15e+032.19e+032.11e+03
2.88e+07https://www.airbnb.com/rooms/28794953392       100      Apartment1494Private room1  112FALSEFALSEAmager Vestflexible12.655.61.57e+033.2 Amager3.210.00374-0.0167  3.2 3.221.63e+031.66e+031.6e+03 
2.88e+07https://www.airbnb.com/rooms/28798805478       1700      Apartment16100Private room1  112FALSETRUEBispebjergmoderate12.555.71.98e+033.3 Nordvest3.160.0048 0.14    3.153.171.44e+031.47e+031.41e+03
2.88e+07https://www.airbnb.com/rooms/28803714199       1080      Apartment2993Private room1  122FALSETRUENrrebroflexible12.555.71.12e+033.05Brokvarterer3.240.00307-0.192   3.233.251.74e+031.76e+031.71e+03
2.88e+07https://www.airbnb.com/rooms/28826719345       133247      Apartment2598Private room1  111TRUETRUENrrebrostrict_14_with_grace_period12.555.71.9e+03 3.28Brokvarterer3.280.00439-0.00616 3.283.291.93e+031.97e+031.89e+03
2.89e+07https://www.airbnb.com/rooms/28860049352       21100      Condominium1497Private room1  112TRUETRUEVanlsemoderate12.555.71.52e+033.18Nordvest3.190.00663-0.0135  3.183.211.57e+031.61e+031.52e+03
2.9e+07 https://www.airbnb.com/rooms/28984553498       100      Apartment1198Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.71.99e+033.3 Brokvarterer3.270.004150.0265  3.263.281.87e+031.91e+031.84e+03
2.9e+07 https://www.airbnb.com/rooms/28993535399       100      House4998Private room1  111TRUETRUEAmager Vestmoderate12.655.61.6e+03 3.2 Amager3.260.00695-0.0595  3.253.281.83e+031.89e+031.77e+03
2.9e+07 https://www.airbnb.com/rooms/28994811352       1200150      Apartment1893Private room1  111FALSETRUEVesterbro-Kongens Enghavemoderate12.655.62.21e+033.34Brokvarterer3.230.0034 0.115   3.223.241.69e+031.72e+031.67e+03
2.9e+07 https://www.airbnb.com/rooms/29000870299       11000      Apartment2299Private room1  111TRUEFALSEAmager Veststrict_14_with_grace_period12.655.71.3e+03 3.11Amager3.260.00493-0.146   3.253.271.82e+031.86e+031.78e+03
2.9e+07 https://www.airbnb.com/rooms/290045351.25e+0312500      Apartment1997Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.75.25e+033.72Center3.450.0049 0.27    3.443.462.82e+032.88e+032.76e+03
2.9e+07 https://www.airbnb.com/rooms/29018351326       1075      Apartment10100Private room2  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.71.6e+03 3.21Brokvarterer3.330.00535-0.121   3.323.342.12e+032.17e+032.07e+03
2.91e+07https://www.airbnb.com/rooms/29097401352       100      Apartment1398Private room1  112FALSETRUEAmager Vestflexible12.655.71.41e+033.15Amager3.220.0038 -0.0685  3.213.221.65e+031.68e+031.62e+03
2.91e+07https://www.airbnb.com/rooms/29108565352       100      Condominium1599Private room1  111FALSETRUEsterbromoderate12.655.71.41e+033.15Brokvarterer3.250.00524-0.1     3.243.261.77e+031.82e+031.73e+03
2.92e+07https://www.airbnb.com/rooms/29173710159       1100115      Apartment1198Private room1  111TRUETRUEValbymoderate12.555.71.2e+03 3.08West3.160.00602-0.0789  3.143.171.43e+031.47e+031.4e+03 
2.92e+07https://www.airbnb.com/rooms/29176083299       1085      Apartment5790Private room1  112FALSETRUENrrebroflexible12.555.71.54e+033.19Brokvarterer3.240.00341-0.0543  3.233.251.74e+031.77e+031.71e+03
2.93e+07https://www.airbnb.com/rooms/29255888498       2120120      Townhouse2395Private room1  255FALSETRUEsterbromoderate12.655.72.11e+033.32Brokvarterer3.430.00847-0.109   3.423.452.72e+032.82e+032.62e+03
2.93e+07https://www.airbnb.com/rooms/29273471219       100      Apartment1594Private room1  112FALSETRUEAmager Vestflexible12.655.6876       2.94Amager3.210.00374-0.27    3.2 3.221.63e+031.66e+031.6e+03 
2.93e+07https://www.airbnb.com/rooms/29324266618       1100150      Apartment2793Private room1  123FALSEFALSEVesterbro-Kongens Enghavemoderate12.655.73.17e+033.5 Brokvarterer3.3 0.003470.199   3.3 3.312.01e+032.04e+031.98e+03
2.93e+07https://www.airbnb.com/rooms/29348750452       1150130      Apartment11399Private room1.5112TRUEFALSEIndre Bymoderate12.655.72.48e+033.39Center3.480.0055 -0.0823  3.473.493e+03       3.07e+032.92e+03
2.94e+07https://www.airbnb.com/rooms/29357285498       11000      Apartment1799Private room1  112TRUETRUEAmager Vestmoderate12.655.72.09e+033.32Amager3.280.004710.0452  3.273.281.89e+031.93e+031.85e+03
2.94e+07https://www.airbnb.com/rooms/29412484399       1500      Apartment1096Private room1  112TRUETRUENrrebroflexible12.555.71.65e+033.22Brokvarterer3.270.00416-0.0536  3.263.281.86e+031.9e+03 1.83e+03
2.94e+07https://www.airbnb.com/rooms/29448676498       100      Apartment1196Private room1  122FALSETRUEAmager Vestflexible12.655.71.99e+033.3 Amager3.210.003760.0852  3.213.221.64e+031.67e+031.61e+03
2.95e+07https://www.airbnb.com/rooms/29475254299       100      Apartment1298Private room1  112FALSETRUEBispebjergflexible12.555.71.2e+03 3.08Nordvest3.130.00459-0.0493  3.123.141.34e+031.37e+031.31e+03
2.95e+07https://www.airbnb.com/rooms/29505077399       12500      Apartment6092Private room1.5112FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.85e+033.27Center3.450.00474-0.181   3.443.462.8e+03 2.86e+032.74e+03
2.95e+07https://www.airbnb.com/rooms/29528219412       1080      Apartment2899Private room1  112TRUETRUEAmager Vestmoderate12.655.71.97e+033.29Amager3.280.004630.0168  3.273.291.89e+031.93e+031.85e+03
2.96e+07https://www.airbnb.com/rooms/29584810299       100      Apartment12490Private room1  112FALSETRUEValbyflexible12.555.71.2e+03 3.08West3.140.00651-0.0673  3.133.161.4e+03 1.44e+031.36e+03
2.96e+07https://www.airbnb.com/rooms/29608528452       1050      Apartment10100Private room1  112FALSETRUENrrebroflexible12.655.72.01e+033.3 Brokvarterer3.250.0032 0.057   3.243.251.76e+031.79e+031.74e+03
2.96e+07https://www.airbnb.com/rooms/29621032292       14050      Apartment10099Private room1  112TRUETRUENrrebroflexible12.655.71.41e+033.15Brokvarterer3.290.00455-0.141   3.283.3 1.95e+031.99e+031.91e+03
2.96e+07https://www.airbnb.com/rooms/29627657399       1150150      Apartment6991Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.35e+033.37Brokvarterer3.270.003680.0993  3.263.281.87e+031.9e+03 1.84e+03
2.96e+07https://www.airbnb.com/rooms/29648464558       210050      Apartment21100Private room1  113TRUETRUEsterbrostrict_14_with_grace_period12.655.72.33e+033.37Brokvarterer3.360.004470.00904 3.353.372.28e+032.33e+032.24e+03
2.97e+07https://www.airbnb.com/rooms/29680613299       120095      Apartment8296Private room1  112TRUETRUEBispebjergflexible12.555.71.78e+033.25Nordvest3.170.005480.0836  3.163.181.46e+031.5e+03 1.43e+03
2.97e+07https://www.airbnb.com/rooms/29704590219       1150100      Apartment1996Private room1  112FALSETRUEValbyflexible12.555.71.43e+033.15West3.130.005080.0192  3.133.141.36e+031.4e+03 1.33e+03
2.97e+07https://www.airbnb.com/rooms/29732726279       1150150      Apartment2491Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.87e+033.27Brokvarterer3.240.003080.0345  3.233.241.72e+031.75e+031.7e+03 
2.98e+07https://www.airbnb.com/rooms/29756997698       12500      Apartment1696Private room1  122TRUETRUEVesterbro-Kongens Enghavemoderate12.655.73.04e+033.48Brokvarterer3.3 0.004210.185   3.293.311.99e+032.02e+031.95e+03
2.99e+07https://www.airbnb.com/rooms/29854096624       27550      Apartment1897Private room1  122TRUETRUEAmager Vestflexible12.655.62.57e+033.41Amager3.250.0046 0.164   3.243.261.76e+031.8e+03 1.73e+03
2.99e+07https://www.airbnb.com/rooms/29897239498       21000      Apartment2499Private room1  112FALSETRUENrrebromoderate12.655.72.09e+033.32Brokvarterer3.270.003320.0468  3.273.281.88e+031.91e+031.85e+03
2.99e+07https://www.airbnb.com/rooms/29940606352       100      Apartment2698Private room1  111TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.41e+033.15Brokvarterer3.290.00438-0.136   3.283.291.93e+031.97e+031.89e+03
3e+07       https://www.airbnb.com/rooms/29953897266       1050      Apartment1896Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.71.26e+033.1 Brokvarterer3.270.00326-0.167   3.263.281.86e+031.88e+031.83e+03
3e+07       https://www.airbnb.com/rooms/29960791252       100      Apartment2297Private room1  111TRUETRUEValbyflexible12.555.71.01e+033   West3.130.00583-0.127   3.123.141.35e+031.39e+031.31e+03
3.01e+07https://www.airbnb.com/rooms/30088108199       100      Apartment14100Private room2  122TRUETRUEVesterbro-Kongens Enghaveflexible12.555.6796       2.9 Brokvarterer3.330.00589-0.428   3.323.342.13e+032.19e+032.08e+03
3.01e+07https://www.airbnb.com/rooms/30101131252       11000      Apartment5999Private room1  122TRUETRUEBispebjergstrict_14_with_grace_period12.555.71.11e+033.04Nordvest3.210.00546-0.167   3.2 3.221.63e+031.67e+031.59e+03
3.01e+07https://www.airbnb.com/rooms/30105029399       100      Apartment6690Private room1  111FALSETRUEIndre Bymoderate12.655.71.6e+03 3.2 Center3.360.0045 -0.162   3.363.372.32e+032.36e+032.27e+03
3.01e+07https://www.airbnb.com/rooms/30148649399       10100      Apartment5497Private room1  112TRUETRUEAmager Vestflexible12.655.72e+03       3.3 Amager3.250.004550.048   3.243.261.79e+031.82e+031.75e+03
3.02e+07https://www.airbnb.com/rooms/30174695505       1224224      Apartment2099Private room1  112TRUETRUEIndre Bymoderate12.655.73.14e+033.5 Center3.430.004840.0629  3.423.442.72e+032.78e+032.66e+03
3.02e+07https://www.airbnb.com/rooms/30190432399       11000      Apartment1898Private room1  112TRUETRUEAmager stflexible12.655.71.7e+03 3.23Amager3.250.00461-0.0179  3.243.261.77e+031.8e+03 1.73e+03
3.03e+07https://www.airbnb.com/rooms/30283310352       12500      Apartment3799Private room1  112TRUETRUEAmager Vestmoderate12.655.61.66e+033.22Amager3.280.00459-0.0592  3.273.291.9e+03 1.94e+031.86e+03
3.03e+07https://www.airbnb.com/rooms/30333833199       100      Apartment2190Private room1.5112FALSETRUENrrebromoderate12.655.7796       2.9 Brokvarterer3.290.0039 -0.387   3.283.3 1.94e+031.98e+031.91e+03
3.03e+07https://www.airbnb.com/rooms/30336063419       10122      Apartment13100Private room1  112TRUETRUENrrebroflexible12.555.72.16e+033.34Brokvarterer3.280.004160.0595  3.273.281.89e+031.92e+031.85e+03
3.04e+07https://www.airbnb.com/rooms/30359755352       1100150      Apartment2198Private room1  233TRUETRUEFrederiksbergmoderate12.555.72.11e+033.32Brokvarterer3.380.00444-0.0589  3.373.392.41e+032.46e+032.37e+03
3.05e+07https://www.airbnb.com/rooms/30454450691       20100      Apartment2295Private room1  144FALSEFALSENrrebrostrict_14_with_grace_period12.655.72.76e+033.44Brokvarterer3.360.004110.0827  3.353.372.28e+032.33e+032.24e+03
3.07e+07https://www.airbnb.com/rooms/30674303312       20150      Apartment15799Private room1  123TRUETRUEBrnshj-Husumflexible12.555.71.25e+033.1 West3.230.0073 -0.132   3.213.241.69e+031.75e+031.63e+03
3.07e+07https://www.airbnb.com/rooms/30682423352       11750      Apartment2793Private room1  111FALSETRUEsterbrostrict_14_with_grace_period12.655.71.58e+033.2 Brokvarterer3.250.00359-0.0498  3.243.261.78e+031.8e+03 1.75e+03
3.07e+07https://www.airbnb.com/rooms/30704212359       100      Apartment2192Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.44e+033.16Brokvarterer3.240.00306-0.0801  3.233.241.73e+031.75e+031.7e+03 
3.07e+07https://www.airbnb.com/rooms/30705669199       13089      Apartment1894Private room1.5112TRUEFALSEsterbroflexible12.655.71.18e+033.07Brokvarterer3.3 0.00459-0.223   3.293.3 1.97e+032.02e+031.93e+03
3.07e+07https://www.airbnb.com/rooms/30727876399       115070      Apartment6397Private room1  112TRUETRUEBispebjergflexible12.555.72.03e+033.31Nordvest3.160.005320.143   3.153.171.46e+031.49e+031.42e+03
3.07e+07https://www.airbnb.com/rooms/30731799206       12990      Apartment2299Private room1  112TRUEFALSEValbystrict_14_with_grace_period12.555.71.12e+033.05West3.210.00597-0.164   3.2 3.231.64e+031.68e+031.6e+03 
3.08e+07https://www.airbnb.com/rooms/30805923399       1150150      Apartment1397Private room1  112FALSETRUENrrebroflexible12.555.72.35e+033.37Brokvarterer3.240.003090.128   3.243.251.75e+031.77e+031.72e+03
3.08e+07https://www.airbnb.com/rooms/30807109352       1700      Apartment2499Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.48e+033.17Brokvarterer3.320.00428-0.152   3.313.332.1e+03 2.14e+032.06e+03
3.08e+07https://www.airbnb.com/rooms/30831468272       100      Apartment6795Private room1.5111FALSEFALSEBispebjergflexible12.555.71.09e+033.04Nordvest3.120.00551-0.0865  3.113.131.33e+031.36e+031.3e+03 
3.1e+07 https://www.airbnb.com/rooms/31018394299       2200100      Apartment1999Private room1  112TRUETRUENrrebromoderate12.655.71.4e+03 3.14Brokvarterer3.3 0.00419-0.157   3.293.312.01e+032.04e+031.97e+03
3.1e+07 https://www.airbnb.com/rooms/31047028153       11000      House4199Private room1  112TRUETRUEBrnshj-Husumflexible12.555.7712       2.85West3.190.00719-0.338   3.183.211.55e+031.6e+03 1.5e+03 
3.11e+07https://www.airbnb.com/rooms/31057476498       1090      Apartment10100Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.62.35e+033.37Amager3.290.004930.0772  3.283.3 1.97e+032.01e+031.93e+03
3.11e+07https://www.airbnb.com/rooms/31118495505       100      Apartment3994Private room1  112FALSETRUEFrederiksbergflexible12.555.72.02e+033.31Brokvarterer3.240.003140.0625  3.243.251.75e+031.77e+031.72e+03
3.12e+07https://www.airbnb.com/rooms/31248084219       11000      Apartment1094Private room1  112FALSETRUEVanlseflexible12.555.7976       2.99Nordvest3.120.00453-0.132   3.113.131.32e+031.35e+031.3e+03 
3.13e+07https://www.airbnb.com/rooms/31290153498       250120      Apartment1295Private room3.5113FALSETRUEIndre Byflexible12.655.72.04e+033.31Center3.540.0113 -0.23    3.523.563.47e+033.65e+033.29e+03
3.13e+07https://www.airbnb.com/rooms/31326896751       100      Apartment14100Private room1  111FALSETRUEIndre Byflexible12.655.73e+03       3.48Center3.340.004230.136   3.333.352.2e+03 2.24e+032.16e+03
3.14e+07https://www.airbnb.com/rooms/31400072126       100      Apartment1494Private room1  111FALSETRUEValbymoderate12.555.7504       2.7 West3.120.00535-0.42    3.113.131.33e+031.36e+031.29e+03
3.14e+07https://www.airbnb.com/rooms/31401376399       10100      Apartment4199Private room1  112FALSETRUENrrebrostrict_14_with_grace_period12.655.72e+03       3.3 Brokvarterer3.3 0.003570.0047  3.293.3 1.97e+032.01e+031.94e+03
3.14e+07https://www.airbnb.com/rooms/31410067698       12500      Apartment1599Private room1  112TRUETRUEIndre Byflexible12.655.73.04e+033.48Center3.410.004810.0769  3.4 3.422.55e+032.6e+03 2.49e+03
3.15e+07https://www.airbnb.com/rooms/31466813372       100      Other18100Private room1  112TRUETRUEValbyflexible12.555.71.49e+033.17West3.240.00875-0.0702  3.233.261.75e+031.82e+031.68e+03
3.15e+07https://www.airbnb.com/rooms/31488751598       100      Apartment1596Private room1  112FALSETRUEIndre Byflexible12.655.72.39e+033.38Center3.370.004010.00588 3.373.382.36e+032.4e+03 2.32e+03
3.15e+07https://www.airbnb.com/rooms/31528287392       100      Apartment1196Private room1  112TRUETRUEIndre Byflexible12.655.71.57e+033.2 Center3.4 0.00483-0.206   3.393.412.52e+032.58e+032.47e+03
3.16e+07https://www.airbnb.com/rooms/31559772352       23000      Apartment4197Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.71.71e+033.23Center3.420.00424-0.192   3.423.432.66e+032.71e+032.61e+03
3.16e+07https://www.airbnb.com/rooms/31579721299       2050      Apartment4192Private room1  133FALSETRUEFrederiksbergflexible12.555.71.2e+03 3.08Brokvarterer3.280.00339-0.199   3.273.281.89e+031.92e+031.86e+03
3.16e+07https://www.airbnb.com/rooms/31608294498       12500      Other2399Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.62.24e+033.35Amager3.370.00828-0.018   3.353.382.34e+032.43e+032.25e+03
3.16e+07https://www.airbnb.com/rooms/31612774252       1500      Apartment1297Private room1  122TRUETRUEValbymoderate12.555.71.06e+033.02West3.190.00591-0.167   3.183.2 1.55e+031.6e+03 1.51e+03
3.16e+07https://www.airbnb.com/rooms/31649106352       1150100      Apartment17100Private room1  112TRUETRUEAmager Vestmoderate12.655.61.96e+033.29Amager3.280.004730.0151  3.273.291.89e+031.93e+031.85e+03
3.17e+07https://www.airbnb.com/rooms/31682837325       1160170      Condominium27100Private room1  012TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.14e+033.33Brokvarterer3.290.0061 0.0397  3.283.3 1.95e+032.01e+031.9e+03 
3.17e+07https://www.airbnb.com/rooms/31690769352       200      Condominium1595Private room1  101TRUETRUENrrebroflexible12.555.71.41e+033.15Brokvarterer3.250.0058 -0.0974  3.233.261.76e+031.81e+031.72e+03
3.17e+07https://www.airbnb.com/rooms/31705502385       12000      Other2999Private room1  112TRUETRUEFrederiksbergflexible12.555.71.74e+033.24Brokvarterer3.350.00798-0.11    3.333.372.24e+032.32e+032.16e+03
3.17e+07https://www.airbnb.com/rooms/31725838651       21000      Other3392Private room1.5112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.72.7e+03 3.43Brokvarterer3.380.007890.0471  3.373.4 2.43e+032.51e+032.34e+03
3.18e+07https://www.airbnb.com/rooms/31848826452       1150150      Apartment2198Private room1  123TRUETRUENrrebrostrict_14_with_grace_period12.655.72.56e+033.41Brokvarterer3.360.004440.0518  3.353.362.27e+032.32e+032.23e+03
3.19e+07https://www.airbnb.com/rooms/31892048352       150200      Apartment2799Private room1.5111TRUETRUEBispebjergmoderate12.555.72.26e+033.35Nordvest3.180.005860.176   3.173.191.51e+031.55e+031.47e+03
3.19e+07https://www.airbnb.com/rooms/319189091e+03       2310800      Apartment1695Private room1  124FALSETRUEIndre Bymoderate12.655.74.32e+033.64Center3.470.0047 0.165   3.463.482.95e+033.02e+032.89e+03
3.19e+07https://www.airbnb.com/rooms/31944425299       1800      Apartment2198Private room1  111TRUETRUEValbymoderate12.555.71.28e+033.11West3.160.00595-0.0525  3.153.171.44e+031.48e+031.4e+03 
3.2e+07 https://www.airbnb.com/rooms/32036270598       1500      Apartment1595Private room1  112FALSEFALSEAmager stmoderate12.655.72.44e+033.39Amager3.240.003920.147   3.233.251.74e+031.77e+031.71e+03
3.21e+07https://www.airbnb.com/rooms/32102028299       11000      Other3797Private room1  112TRUETRUEBispebjergflexible12.555.71.3e+03 3.11Nordvest3.230.00853-0.12    3.223.251.71e+031.78e+031.64e+03
3.21e+07https://www.airbnb.com/rooms/32121881498       100      Apartment1398Private room1  112TRUETRUEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer3.270.004130.0262  3.273.281.88e+031.91e+031.84e+03
3.21e+07https://www.airbnb.com/rooms/32130320299       11000      Apartment22100Private room1  112TRUETRUEsterbroflexible12.655.71.3e+03 3.11Brokvarterer3.280.00409-0.165   3.273.291.89e+031.93e+031.86e+03
3.22e+07https://www.airbnb.com/rooms/32234648312       100      Apartment1298Private room1  112TRUEFALSEFrederiksbergstrict_14_with_grace_period12.555.71.25e+033.1 Brokvarterer3.320.00439-0.222   3.313.332.08e+032.12e+032.04e+03
3.22e+07https://www.airbnb.com/rooms/32245469492       250200      Apartment2692Private room1  112FALSEFALSEBispebjergmoderate12.555.72.02e+033.3 Nordvest3.150.004710.156   3.143.161.41e+031.44e+031.38e+03
3.22e+07https://www.airbnb.com/rooms/32246800252       1150180      Apartment2598Private room1  112TRUETRUEBispebjergmoderate12.555.71.88e+033.27Nordvest3.190.005360.0881  3.183.2 1.53e+031.57e+031.5e+03 
3.23e+07https://www.airbnb.com/rooms/32296918252       11000      Apartment3292Private room1  112FALSETRUEBispebjergmoderate12.555.71.11e+033.04Nordvest3.150.00472-0.105   3.143.161.41e+031.44e+031.38e+03
3.24e+07https://www.airbnb.com/rooms/32350278352       1125125      Apartment3391Private room1  133FALSETRUEsterbroflexible12.655.72.03e+033.31Brokvarterer3.270.003340.0343  3.273.281.88e+031.91e+031.85e+03
3.24e+07https://www.airbnb.com/rooms/32439197339       1125100      Apartment1198Private room1  112TRUETRUEsterbroflexible12.655.71.88e+033.27Brokvarterer3.270.004150.00161 3.263.281.87e+031.91e+031.84e+03
3.25e+07https://www.airbnb.com/rooms/32467621252       1050      Apartment1195Private room1  112TRUETRUENrrebroflexible12.655.71.21e+033.08Brokvarterer3.270.00415-0.187   3.263.281.86e+031.89e+031.82e+03
3.25e+07https://www.airbnb.com/rooms/32519952498       100      Apartment2096Private room1  112FALSETRUEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer3.240.003060.057   3.243.251.75e+031.77e+031.72e+03
3.25e+07https://www.airbnb.com/rooms/32536891452       10100      Apartment12100Private room1  122TRUETRUENrrebroflexible12.555.72.21e+033.34Brokvarterer3.280.004170.0684  3.273.281.89e+031.92e+031.85e+03
3.27e+07https://www.airbnb.com/rooms/32707835252       1120150      Apartment1392Private room1  112FALSETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.71.73e+033.24Brokvarterer3.280.00348-0.044   3.273.291.91e+031.94e+031.88e+03
3.28e+07https://www.airbnb.com/rooms/32757110950       100      Apartment17100Private room1.5112TRUETRUEIndre Byflexible12.655.73.8e+03 3.58Center3.430.005190.145   3.423.442.72e+032.78e+032.66e+03
3.28e+07https://www.airbnb.com/rooms/32788817452       100      House2698Private room0.5122TRUETRUEFrederiksbergflexible12.555.71.81e+033.26Brokvarterer3.270.00757-0.0105  3.253.281.85e+031.92e+031.79e+03
3.28e+07https://www.airbnb.com/rooms/32823591339       10150      Apartment1396Private room1  122FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.96e+033.29Brokvarterer3.240.003070.0503  3.243.251.74e+031.77e+031.72e+03
3.28e+07https://www.airbnb.com/rooms/32840963299       280100      Apartment4498Private room1  112FALSETRUENrrebromoderate12.555.71.28e+033.11Brokvarterer3.280.00337-0.17    3.273.281.89e+031.92e+031.86e+03
3.29e+07https://www.airbnb.com/rooms/32914308498       11000      Apartment23100Private room1  112TRUETRUEAmager Vestflexible12.655.72.09e+033.32Amager3.250.0046 0.0697  3.243.261.78e+031.82e+031.74e+03
3.3e+07 https://www.airbnb.com/rooms/32983997399       2200150      Other1690Private room0.512FALSETRUEVanlseflexible12.555.71.8e+03 3.25Nordvest                                           
3.31e+07https://www.airbnb.com/rooms/33074780598       2100150      Apartment3296Private room1  114TRUETRUEsterbromoderate12.655.72.49e+033.4 Brokvarterer3.370.004660.0241  3.363.382.36e+032.41e+032.31e+03
3.32e+07https://www.airbnb.com/rooms/33156740120       1450      Apartment2396Private room1  111TRUETRUEAmager stmoderate12.655.7525       2.72Amager3.240.00478-0.516   3.233.251.72e+031.76e+031.69e+03
3.33e+07https://www.airbnb.com/rooms/33307277359       1400      Apartment3499Private room1  111TRUETRUEBispebjergmoderate12.555.71.48e+033.17Nordvest3.150.005430.0165  3.143.161.42e+031.46e+031.39e+03
3.33e+07https://www.airbnb.com/rooms/33307452326       100      Apartment10100Private room1  112TRUETRUEBispebjergflexible12.555.71.3e+03 3.12Nordvest3.160.00538-0.0435  3.153.171.44e+031.48e+031.41e+03
3.34e+07https://www.airbnb.com/rooms/33367615538       1950      Apartment2094Private room1  123FALSETRUEAmager ststrict_14_with_grace_period12.655.72.25e+033.35Amager3.290.004220.057   3.293.3 1.97e+032.01e+031.93e+03
3.34e+07https://www.airbnb.com/rooms/33421604651       100      Apartment1592Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.6e+03 3.42Center3.410.004250.00232 3.4 3.422.59e+032.64e+032.54e+03
3.34e+07https://www.airbnb.com/rooms/33437837299       100      Apartment2796Private room1  112FALSETRUEAmager stflexible12.655.71.2e+03 3.08Amager3.220.00377-0.139   3.213.221.65e+031.68e+031.62e+03
3.35e+07https://www.airbnb.com/rooms/33478438399       1250100      Apartment1193Private room1  122FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.25e+033.35Brokvarterer3.260.003290.0877  3.263.271.84e+031.86e+031.81e+03
3.35e+07https://www.airbnb.com/rooms/33484625751       2300250      Townhouse15100Private room1  223TRUETRUEsterbroflexible12.655.73.3e+03 3.52Brokvarterer3.370.008650.149   3.353.392.34e+032.44e+032.25e+03
3.35e+07https://www.airbnb.com/rooms/33546967498       200      Apartment2198Private room1  112TRUEFALSEValbymoderate12.555.71.99e+033.3 West3.190.005850.105   3.183.211.56e+031.61e+031.52e+03
3.36e+07https://www.airbnb.com/rooms/33570154226       1800      Apartment1791Private room1  111FALSETRUENrrebroflexible12.555.7984       2.99Brokvarterer3.2 0.00321-0.206   3.193.211.58e+031.61e+031.56e+03
3.36e+07https://www.airbnb.com/rooms/33608501412       110090      House3890Private room1  124FALSETRUEBrnshj-Husummoderate12.555.72.11e+033.32West3.250.007110.0759  3.233.261.77e+031.83e+031.71e+03
3.36e+07https://www.airbnb.com/rooms/33649503551       100      Apartment43100Private room1  112TRUETRUEVanlseflexible12.555.72.2e+03 3.34Nordvest3.160.005280.179   3.153.171.46e+031.5e+03 1.43e+03
3.37e+07https://www.airbnb.com/rooms/33650787372       1265300      Apartment1198Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.72.95e+033.47Brokvarterer3.320.0044 0.152   3.313.332.08e+032.12e+032.04e+03
3.37e+07https://www.airbnb.com/rooms/33694187398       212075      Apartment2394Private room1  112FALSETRUEsterbromoderate12.655.71.71e+033.23Brokvarterer3.270.00325-0.0336  3.263.271.85e+031.88e+031.82e+03
3.37e+07https://www.airbnb.com/rooms/33713536252       100      Apartment12100Private room1  112TRUETRUENrrebroflexible12.555.71.01e+033   Brokvarterer3.280.00417-0.272   3.273.281.89e+031.92e+031.85e+03
3.37e+07https://www.airbnb.com/rooms/33714241498       100      Apartment1597Private room1  012TRUETRUEVesterbro-Kongens Enghaveflexible12.655.71.99e+033.3 Brokvarterer3.230.004540.0726  3.223.241.69e+031.72e+031.65e+03
3.37e+07https://www.airbnb.com/rooms/33728619412       175149      Apartment2098Private room1  212TRUETRUEFrederiksbergmoderate12.555.72.32e+033.37Brokvarterer3.350.004630.0186  3.343.362.22e+032.27e+032.18e+03
3.38e+07https://www.airbnb.com/rooms/33754500498       21500      Apartment1291Private room1  112FALSEFALSEBispebjergflexible12.555.72.14e+033.33Nordvest3.120.004530.213   3.113.131.31e+031.34e+031.29e+03
3.38e+07https://www.airbnb.com/rooms/33799001378       2150150      Apartment11100Private room1  122TRUETRUEValbyflexible12.555.71.66e+033.22West3.170.005820.0524  3.163.181.47e+031.51e+031.43e+03
3.39e+07https://www.airbnb.com/rooms/33851914299       1700      Apartment10100Private room1  112TRUETRUEsterbrostrict_14_with_grace_period12.655.71.27e+033.1 Brokvarterer3.320.00443-0.218   3.313.332.09e+032.14e+032.05e+03
3.39e+07https://www.airbnb.com/rooms/33886110299       1100150      Apartment2896Private room1.5112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.9e+03 3.28Brokvarterer3.350.00468-0.0675  3.343.352.21e+032.26e+032.17e+03
3.39e+07https://www.airbnb.com/rooms/33901941399       1100200      Apartment1699Private room1  111FALSETRUEsterbroflexible12.655.72.5e+03 3.4 Brokvarterer3.210.003260.188   3.2 3.221.62e+031.64e+031.6e+03 
3.39e+07https://www.airbnb.com/rooms/33911511299       150100      Apartment2298Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.61.65e+033.22Brokvarterer3.3 0.00415-0.0851  3.293.312e+03       2.04e+031.97e+03
3.4e+07 https://www.airbnb.com/rooms/34012280491       1130170      Apartment1096Private room1  112TRUETRUEVanlsestrict_14_with_grace_period12.555.72.77e+033.44Nordvest3.2 0.005570.244   3.193.211.58e+031.62e+031.54e+03
3.4e+07 https://www.airbnb.com/rooms/34021440398       20100      Apartment2798Private room1  104TRUETRUEFrederiksbergflexible12.555.71.59e+033.2 Brokvarterer3.350.00464-0.145   3.343.362.23e+032.27e+032.18e+03
3.4e+07 https://www.airbnb.com/rooms/34037421352       1100100      House1694Private room1  112FALSETRUEValbymoderate12.555.71.91e+033.28West3.180.006810.103   3.163.191.51e+031.55e+031.46e+03
3.41e+07https://www.airbnb.com/rooms/34055711272       100      Apartment2491Private room1  112FALSETRUENrrebromoderate12.655.71.09e+033.04Brokvarterer3.260.00329-0.227   3.263.271.83e+031.86e+031.81e+03
3.41e+07https://www.airbnb.com/rooms/34133577797       127960      Apartment4691Private room1  134FALSETRUEIndre Byflexible12.655.73.71e+033.57Center3.440.004590.126   3.433.452.78e+032.83e+032.72e+03
3.41e+07https://www.airbnb.com/rooms/34149047285       100      Apartment2890Private room1  112FALSETRUENrrebroflexible12.655.71.14e+033.06Brokvarterer3.240.00312-0.179   3.233.241.72e+031.75e+031.7e+03 
3.43e+07https://www.airbnb.com/rooms/34250490498       280150      Apartment2298Private room1  112TRUETRUEAmager Vestmoderate12.655.62.07e+033.32Amager3.270.004670.0415  3.273.281.88e+031.92e+031.84e+03
3.43e+07https://www.airbnb.com/rooms/34278670292       16060      Other52100Private room1  112TRUETRUEVanlseflexible12.555.71.47e+033.17Nordvest3.240.00855-0.0726  3.223.261.74e+031.8e+03 1.67e+03
3.43e+07https://www.airbnb.com/rooms/34281307299       1035      Apartment16100Private room1  112TRUETRUENrrebromoderate12.555.71.34e+033.13Brokvarterer3.3 0.00423-0.177   3.293.312.01e+032.05e+031.97e+03
3.44e+07https://www.airbnb.com/rooms/34393437597       110050      Apartment1499Private room1  122TRUETRUEIndre Byflexible12.655.72.69e+033.43Center3.410.004820.0234  3.4 3.422.55e+032.6e+03 2.49e+03
3.44e+07https://www.airbnb.com/rooms/34426647498       100      Townhouse2698Private room1  112TRUETRUEAmager stflexible12.655.61.99e+033.3 Amager3.260.008620.0381  3.243.281.82e+031.9e+03 1.76e+03
3.44e+07https://www.airbnb.com/rooms/34440923551       1330      Other1895Private room1  112TRUETRUENrrebromoderate12.655.72.24e+033.35Brokvarterer3.370.00809-0.0207  3.353.392.35e+032.43e+032.26e+03
3.45e+07https://www.airbnb.com/rooms/34502695498       350100      Other2697Private room1  113TRUETRUEValbyflexible12.555.72.04e+033.31West3.280.008730.0339  3.263.291.89e+031.96e+031.82e+03
3.45e+07https://www.airbnb.com/rooms/34525854471       114050      Apartment1791Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.22e+033.35Center3.410.00425-0.0652  3.4 3.422.58e+032.63e+032.54e+03
3.46e+07https://www.airbnb.com/rooms/34582204485       100      House2795Private room1  012FALSEFALSEIndre Byflexible12.655.71.94e+033.29Center3.350.00736-0.0593  3.333.362.22e+032.3e+03 2.15e+03
3.46e+07https://www.airbnb.com/rooms/34626214598       1450100      Apartment2497Private room1  112FALSETRUEIndre Bystrict_14_with_grace_period12.655.73.24e+033.51Center3.420.004230.0894  3.413.432.64e+032.69e+032.59e+03
3.47e+07https://www.airbnb.com/rooms/34679434372       1500      Apartment2396Private room1  112TRUETRUEBrnshj-Husumstrict_14_with_grace_period12.555.71.54e+033.19West3.210.00595-0.0238  3.2 3.221.62e+031.67e+031.58e+03
3.47e+07https://www.airbnb.com/rooms/34681260392       100      Other4692Private room1  244FALSETRUEAmager stflexible12.655.61.57e+033.2 Amager3.410.00792-0.21    3.393.422.54e+032.64e+032.45e+03
3.47e+07https://www.airbnb.com/rooms/34695860286       160150      Other3598Private room1  022TRUETRUEBrnshj-Husumflexible12.555.71.8e+03 3.26West3.2 0.0089 0.0586  3.183.221.58e+031.64e+031.51e+03
3.47e+07https://www.airbnb.com/rooms/34696236412       100      Apartment8098Private room1  111TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.65e+033.22Brokvarterer3.280.00433-0.0586  3.273.281.89e+031.92e+031.85e+03
3.47e+07https://www.airbnb.com/rooms/34697921392       100      Apartment2093Private room1  112FALSETRUEAmager stflexible12.655.61.57e+033.2 Amager3.210.00374-0.0164  3.2 3.221.63e+031.66e+031.6e+03 
3.47e+07https://www.airbnb.com/rooms/34713420498       1400      Apartment6097Private room1  112TRUETRUEFrederiksbergmoderate12.655.72.03e+033.31Brokvarterer3.310.004050.00119 3.3 3.312.03e+032.06e+031.99e+03
3.48e+07https://www.airbnb.com/rooms/34772721399       1050      Apartment1490Private room1  012FALSETRUEVesterbro-Kongens Enghavemoderate12.555.61.8e+03 3.25Brokvarterer3.210.003880.0395  3.213.221.64e+031.67e+031.61e+03
3.48e+07https://www.airbnb.com/rooms/34809039398       1100200      Apartment1799Private room1  112TRUETRUENrrebroflexible12.555.72.49e+033.4 Brokvarterer3.280.004110.121   3.273.281.88e+031.92e+031.85e+03
3.48e+07https://www.airbnb.com/rooms/34835494299       150100      Apartment2097Private room1  112FALSETRUENrrebroflexible12.655.71.65e+033.22Brokvarterer3.240.00308-0.0272  3.243.251.75e+031.78e+031.73e+03
3.49e+07https://www.airbnb.com/rooms/34856242498       100      Apartment2098Private room1  112TRUETRUEFrederiksbergstrict_14_with_grace_period12.555.71.99e+033.3 Brokvarterer3.320.0043 -0.0207  3.313.332.09e+032.13e+032.05e+03
3.49e+07https://www.airbnb.com/rooms/34888013299       100      Apartment1591Private room1  111FALSETRUENrrebroflexible12.655.71.2e+03 3.08Brokvarterer3.2 0.00321-0.121   3.193.211.58e+031.6e+03 1.56e+03
3.49e+07https://www.airbnb.com/rooms/34920043392       19999      Apartment4093Private room1  123FALSETRUEAmager stflexible12.655.72.06e+033.31Amager3.250.004  0.0635  3.243.261.78e+031.82e+031.75e+03
3.49e+07https://www.airbnb.com/rooms/34937541597       100      House1798Private room1  122TRUETRUEAmager stflexible12.655.72.39e+033.38Amager3.270.006880.112   3.253.281.85e+031.9e+03 1.79e+03
3.5e+07 https://www.airbnb.com/rooms/34971525319       150200      Other2197Private room1  112TRUETRUEVanlseflexible12.555.72.13e+033.33Nordvest3.230.008580.0974  3.213.251.7e+03 1.77e+031.63e+03
3.5e+07 https://www.airbnb.com/rooms/35032262352       1150300      Apartment1694Private room1  123FALSETRUENrrebroflexible12.555.72.76e+033.44Brokvarterer3.270.003290.166   3.273.281.88e+031.91e+031.86e+03
3.5e+07 https://www.airbnb.com/rooms/35038891751       12500      Apartment10100Private room1  112FALSETRUEAmager stflexible12.655.73.25e+033.51Amager3.220.003870.293   3.213.231.66e+031.69e+031.63e+03
3.51e+07https://www.airbnb.com/rooms/35071143571       11500      Apartment2997Private room1  012TRUETRUEIndre Bymoderate12.655.72.43e+033.39Center3.390.00513-0.00112 3.383.4 2.44e+032.5e+03 2.38e+03
3.52e+07https://www.airbnb.com/rooms/35215509551       11500      Apartment15100Private room1  112TRUETRUEAmager Veststrict_14_with_grace_period12.655.72.35e+033.37Amager3.3 0.004880.0767  3.293.3 1.97e+032.02e+031.93e+03
3.52e+07https://www.airbnb.com/rooms/35239023451       100      Apartment1096Private room1  112TRUEFALSEFrederiksbergflexible12.655.71.8e+03 3.26Brokvarterer3.270.00416-0.0137  3.263.281.86e+031.9e+03 1.83e+03
3.53e+07https://www.airbnb.com/rooms/35297865551       20100      Apartment3894Private room1  113FALSEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.72.2e+03 3.34Brokvarterer3.320.003650.0189  3.323.332.11e+032.15e+032.08e+03
3.53e+07https://www.airbnb.com/rooms/35300458352       1350      Apartment1999Private room1  112TRUETRUEAmager Vestflexible12.655.61.44e+033.16Amager3.250.00461-0.0896  3.243.261.77e+031.81e+031.74e+03
3.55e+07https://www.airbnb.com/rooms/35540010246       19535      Apartment1696Private room1  112TRUETRUEVanlsemoderate12.555.71.22e+033.09Nordvest3.180.00541-0.0955  3.173.191.52e+031.56e+031.48e+03
3.56e+07https://www.airbnb.com/rooms/35578830451       100      Apartment3792Private room1  112FALSETRUEAmager stflexible12.655.71.8e+03 3.26Amager3.210.003820.0429  3.213.221.63e+031.66e+031.61e+03
3.56e+07https://www.airbnb.com/rooms/356044131.5e+03 100      Apartment1796Private room1.5223FALSETRUEIndre Bymoderate12.655.76e+03       3.78Center3.510.004640.27    3.5 3.523.22e+033.29e+033.16e+03
3.57e+07https://www.airbnb.com/rooms/35664005478       12500      Apartment2395Private room1  123FALSETRUEIndre Bystrict_14_with_grace_period12.655.72.16e+033.33Center3.450.00433-0.12    3.453.462.85e+032.9e+03 2.79e+03
3.57e+07https://www.airbnb.com/rooms/35693463325       100      Apartment3491Private room1  122FALSEFALSEVesterbro-Kongens Enghaveflexible12.555.71.3e+03 3.11Brokvarterer3.240.00313-0.124   3.233.241.73e+031.75e+031.71e+03
3.57e+07https://www.airbnb.com/rooms/35699272850       22000      Apartment5398Private room1  012TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.6e+03 3.56Center3.410.005080.145   3.4 3.422.58e+032.64e+032.52e+03
3.57e+07https://www.airbnb.com/rooms/35722788398       11750      Apartment10100Private room1  112FALSEFALSENrrebroflexible12.555.71.77e+033.25Brokvarterer3.250.0032 0.00142 3.243.251.76e+031.79e+031.74e+03
3.57e+07https://www.airbnb.com/rooms/35728133219       1350      Apartment3091Private room1  111FALSETRUEAmager Vestmoderate12.655.7911       2.96Amager3.2 0.00408-0.242   3.193.211.59e+031.62e+031.56e+03
3.58e+07https://www.airbnb.com/rooms/35765569485       198210      Apartment3496Private room1  111TRUETRUENrrebroflexible12.655.72.88e+033.46Brokvarterer3.240.004110.221   3.233.251.73e+031.76e+031.7e+03 
3.58e+07https://www.airbnb.com/rooms/35767935498       20200      Apartment2594Private room1  114FALSETRUEsterbrostrict_14_with_grace_period12.655.71.99e+033.3 Brokvarterer3.360.0041 -0.0587  3.353.372.28e+032.32e+032.24e+03
3.58e+07https://www.airbnb.com/rooms/35780038451       1050      Apartment2598Private room1  111TRUEFALSENrrebroflexible12.655.72e+03       3.3 Brokvarterer3.240.004150.0627  3.233.251.73e+031.77e+031.7e+03 
3.58e+07https://www.airbnb.com/rooms/35786920478       100      Apartment2295Private room1  112FALSETRUEFrederiksbergflexible12.555.71.91e+033.28Brokvarterer3.240.003050.0402  3.243.251.74e+031.77e+031.72e+03
3.58e+07https://www.airbnb.com/rooms/35839191392       1100100      Apartment1997Private room1  112TRUETRUEIndre Byflexible12.655.72.07e+033.32Center3.4 0.00476-0.0887  3.393.412.54e+032.59e+032.48e+03
3.59e+07https://www.airbnb.com/rooms/35868440246       1100100      Apartment1693Private room1  111FALSETRUEFrederiksbergflexible12.555.71.48e+033.17Brokvarterer3.2 0.00318-0.0303  3.2 3.211.59e+031.61e+031.57e+03
3.59e+07https://www.airbnb.com/rooms/35930602498       1150175      Apartment2099Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.72.84e+033.45Brokvarterer3.3 0.004180.151   3.293.312.01e+032.05e+031.97e+03
3.59e+07https://www.airbnb.com/rooms/35937731451       100      Apartment1296Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.655.71.8e+03 3.26Brokvarterer3.240.003070.0153  3.233.251.74e+031.77e+031.72e+03
3.6e+07 https://www.airbnb.com/rooms/35967671598       2200300      Apartment2296Private room1  123TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.59e+033.41Brokvarterer3.330.004320.0788  3.333.342.16e+032.2e+03 2.12e+03
3.6e+07 https://www.airbnb.com/rooms/35992981319       1500      Apartment1297Private room1  112TRUETRUEValbyflexible12.555.71.33e+033.12West3.160.00578-0.0419  3.153.181.46e+031.5e+03 1.42e+03
3.6e+07 https://www.airbnb.com/rooms/36011736392       1250150      House1599Private room1  112FALSEFALSEAmager ststrict_14_with_grace_period12.655.72.42e+033.38Amager3.280.006590.1     3.273.3 1.92e+031.98e+031.86e+03
3.6e+07 https://www.airbnb.com/rooms/36013912950       100      Apartment3099Private room1  112TRUETRUEIndre Bystrict_14_with_grace_period12.655.73.8e+03 3.58Center3.450.004810.125   3.453.462.85e+032.91e+032.79e+03
3.6e+07 https://www.airbnb.com/rooms/36013985398       11000      Apartment2097Private room1  112FALSETRUEAmager Vestflexible12.655.61.69e+033.23Amager3.220.003770.0114  3.213.221.65e+031.68e+031.62e+03
3.6e+07 https://www.airbnb.com/rooms/36029772392       1250150      House1898Private room1  112FALSETRUEAmager ststrict_14_with_grace_period12.655.62.42e+033.38Amager3.280.006570.101   3.273.3 1.92e+031.97e+031.86e+03
3.61e+07https://www.airbnb.com/rooms/36058472398       1330      Apartment1596Private room1  132TRUETRUEAmager stflexible12.655.71.62e+033.21Amager3.240.00462-0.0334  3.243.251.75e+031.79e+031.72e+03
3.61e+07https://www.airbnb.com/rooms/36124619398       100      Apartment1593Private room1  112FALSETRUEBispebjergflexible12.555.71.59e+033.2 Nordvest3.120.004520.0809  3.113.131.32e+031.35e+031.29e+03
3.61e+07https://www.airbnb.com/rooms/36128301698       11000      Apartment1696Private room1  112TRUETRUEIndre Byflexible12.655.72.89e+033.46Center3.4 0.004780.0587  3.393.412.53e+032.58e+032.47e+03
3.62e+07https://www.airbnb.com/rooms/36163852286       1250100      Apartment1292Private room1  134FALSEFALSEVesterbro-Kongens Enghavemoderate12.555.61.79e+033.25Brokvarterer3.330.00402-0.0806  3.333.342.16e+032.2e+03 2.12e+03
3.62e+07https://www.airbnb.com/rooms/36221410319       100      Apartment1894Private room1.5344FALSETRUEFrederiksbergflexible12.555.71.28e+033.11Brokvarterer3.430.00439-0.323   3.423.442.68e+032.74e+032.63e+03
3.62e+07https://www.airbnb.com/rooms/36221729299       1500      Apartment11100Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.25e+033.1 Brokvarterer3.3 0.00429-0.207   3.293.312.01e+032.05e+031.97e+03
3.62e+07https://www.airbnb.com/rooms/36226802498       250200      Apartment1698Private room1  112TRUETRUEValbymoderate12.555.72.04e+033.31West3.190.005880.117   3.183.2 1.56e+031.6e+03 1.52e+03
3.63e+07https://www.airbnb.com/rooms/36269850797       20100      Apartment1597Private room1  112FALSETRUEIndre Bymoderate12.655.73.19e+033.5 Center3.4 0.004180.102   3.393.412.52e+032.57e+032.47e+03
3.63e+07https://www.airbnb.com/rooms/36278095299       1100100      Apartment10100Private room1  112TRUETRUEVanlsemoderate12.555.71.7e+03 3.23Nordvest3.190.005480.0437  3.173.2 1.53e+031.57e+031.5e+03 
3.63e+07https://www.airbnb.com/rooms/36284753698       11500      Apartment12100Private room1.5112TRUETRUEVesterbro-Kongens Enghaveflexible12.655.72.94e+033.47Brokvarterer3.3 0.004640.166   3.293.312.01e+032.05e+031.96e+03
3.63e+07https://www.airbnb.com/rooms/36297264325       100      Apartment1994Private room1  111FALSEFALSEBispebjergflexible12.555.71.3e+03 3.11Nordvest3.090.004630.0268  3.083.1 1.22e+031.25e+031.2e+03 
3.63e+07https://www.airbnb.com/rooms/36332656432       1100100      Apartment19100Private room1  112TRUETRUEAmager stflexible12.655.72.23e+033.35Amager3.250.004630.0978  3.243.261.78e+031.82e+031.74e+03
3.64e+07https://www.airbnb.com/rooms/36436230399       100      Apartment2695Private room1  111FALSETRUEsterbromoderate12.655.71.6e+03 3.2 Brokvarterer3.230.00338-0.03    3.233.241.71e+031.74e+031.68e+03
3.65e+07https://www.airbnb.com/rooms/36512357398       1200150      Townhouse1096Private room1  112TRUEFALSEAmager Veststrict_14_with_grace_period12.655.62.39e+033.38Amager3.3 0.0088 0.0772  3.283.322e+03       2.08e+031.92e+03
3.66e+07https://www.airbnb.com/rooms/36593975498       11490      Apartment3791Private room1  133FALSETRUENrrebrostrict_14_with_grace_period12.655.72.14e+033.33Brokvarterer3.320.003660.0104  3.313.332.09e+032.13e+032.06e+03
3.67e+07https://www.airbnb.com/rooms/36664680438       110090      Apartment27100Private room1  112TRUETRUEFrederiksbergmoderate12.555.72.21e+033.34Brokvarterer3.310.004130.0397  3.3 3.312.02e+032.06e+031.98e+03
3.68e+07https://www.airbnb.com/rooms/36787685219       10100      Apartment2093Private room1  121FALSETRUENrrebrostrict_14_with_grace_period12.655.71.28e+033.11Brokvarterer3.250.00359-0.142   3.243.261.77e+031.8e+03 1.74e+03
3.68e+07https://www.airbnb.com/rooms/36796314419       10100      Apartment4299Private room1  112TRUETRUEsterbromoderate12.655.72.08e+033.32Brokvarterer3.310.004050.0109  3.3 3.312.02e+032.06e+031.99e+03
3.69e+07https://www.airbnb.com/rooms/36855658498       2100175      Apartment1497Private room1  112FALSETRUEAmager stmoderate12.655.72.09e+033.32Amager3.240.003940.0777  3.243.251.75e+031.78e+031.72e+03
3.69e+07https://www.airbnb.com/rooms/36871686299       10100      Apartment3792Private room1  121FALSETRUENrrebrostrict_14_with_grace_period12.655.71.6e+03 3.2 Brokvarterer3.250.00363-0.0467  3.243.261.78e+031.81e+031.75e+03
3.69e+07https://www.airbnb.com/rooms/36899429299       100      Other2096Private room1  111TRUETRUEVanlseflexible12.555.71.2e+03 3.08Nordvest3.190.00868-0.115   3.183.211.56e+031.62e+031.5e+03 
3.7e+07 https://www.airbnb.com/rooms/36954363498       12000      Apartment1497Private room1  122FALSETRUEAmager Veststrict_14_with_grace_period12.655.72.19e+033.34Amager3.260.004120.0792  3.253.271.83e+031.86e+031.79e+03
3.7e+07 https://www.airbnb.com/rooms/36999393372       1500      Apartment1599Private room1  112TRUETRUEFrederiksbergflexible12.555.71.54e+033.19Brokvarterer3.270.00413-0.0878  3.273.281.88e+031.92e+031.85e+03
3.7e+07 https://www.airbnb.com/rooms/37003888597       1060      Apartment1192Private room1.5112FALSEFALSEFrederiksbergflexible12.555.72.63e+033.42Brokvarterer3.260.0037 0.158   3.253.271.83e+031.86e+031.8e+03 
3.7e+07 https://www.airbnb.com/rooms/37040196399       100      Apartment16100Private room1  112FALSETRUEVanlseflexible12.555.71.6e+03 3.2 Nordvest3.130.004660.0727  3.123.141.35e+031.38e+031.32e+03
3.71e+07https://www.airbnb.com/rooms/37112170478       100      House1496Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.61.91e+033.28Brokvarterer3.290.00694-0.00811 3.283.3 1.95e+032.01e+031.89e+03
3.71e+07https://www.airbnb.com/rooms/37142589252       2300100      Apartment13100Private room1  112TRUETRUENrrebroflexible12.655.71.31e+033.12Brokvarterer3.280.00416-0.159   3.273.281.89e+031.92e+031.85e+03
3.72e+07https://www.airbnb.com/rooms/37163387485       110075      Other2896Private room1  012FALSETRUEBrnshj-Husumstrict_14_with_grace_period12.555.72.34e+033.37West3.210.0088 0.159   3.193.231.62e+031.69e+031.56e+03
3.73e+07https://www.airbnb.com/rooms/37288225418       200      Apartment3399Private room1  112TRUEFALSEVesterbro-Kongens Enghavemoderate12.555.71.67e+033.22Brokvarterer3.3 0.00408-0.0815  3.3 3.312.02e+032.05e+031.98e+03
3.74e+07https://www.airbnb.com/rooms/37378110213       1250100      Apartment2497Private room1.5112TRUEFALSEIndre Bystrict_14_with_grace_period12.655.71.5e+03 3.18Center3.480.00521-0.301   3.473.493e+03       3.07e+032.93e+03
3.74e+07https://www.airbnb.com/rooms/37394076478       12000      Apartment25100Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.11e+033.32Brokvarterer3.280.003350.0494  3.273.281.88e+031.91e+031.86e+03
3.75e+07https://www.airbnb.com/rooms/37477332578       12000      Apartment2498Private room1  112TRUETRUEIndre Bymoderate12.655.72.51e+033.4 Center3.430.0048 -0.0333  3.423.442.71e+032.77e+032.65e+03
3.75e+07https://www.airbnb.com/rooms/37533392312       20250      Apartment19100Private room1  102FALSETRUEValbymoderate12.555.71.25e+033.1 West3.170.00532-0.0709  3.163.181.47e+031.51e+031.43e+03
3.76e+07https://www.airbnb.com/rooms/37576720392       100      Apartment2497Private room1  112FALSETRUEVesterbro-Kongens Enghaveflexible12.555.71.57e+033.2 Brokvarterer3.240.00309-0.0489  3.243.251.75e+031.78e+031.73e+03
3.76e+07https://www.airbnb.com/rooms/37583521750       12500      Apartment1494Private room1  112FALSETRUENrrebroflexible12.655.73.25e+033.51Brokvarterer3.240.003050.273   3.233.241.73e+031.76e+031.71e+03
3.76e+07https://www.airbnb.com/rooms/376122121e+03       20200      Apartment3799Private room1  224TRUETRUEVesterbro-Kongens Enghaveflexible12.655.74.01e+033.6 Brokvarterer3.4 0.0044 0.208   3.393.4 2.49e+032.54e+032.44e+03
3.76e+07https://www.airbnb.com/rooms/37612308498       100      House5499Private room1  112TRUETRUEAmager Vestflexible12.655.61.99e+033.3 Amager3.270.006840.0256  3.263.291.88e+031.94e+031.82e+03
3.77e+07https://www.airbnb.com/rooms/37700008358       11000      Condominium1194Private room1.5112FALSETRUEAmager Vestflexible12.655.61.53e+033.19Amager3.250.00578-0.0652  3.243.261.78e+031.83e+031.73e+03
3.77e+07https://www.airbnb.com/rooms/37741274651       100      Apartment12100Private room1  102TRUETRUEIndre Bymoderate12.655.72.6e+03 3.42Center3.430.00495-0.0183  3.423.442.72e+032.78e+032.66e+03
3.77e+07https://www.airbnb.com/rooms/37747206750       13000      Apartment22100Private room1  112TRUETRUEIndre Bymoderate12.655.73.3e+03 3.52Center3.440.004840.0829  3.433.452.73e+032.79e+032.67e+03
3.78e+07https://www.airbnb.com/rooms/37777669498       100      Apartment2394Private room1  112FALSEFALSEFrederiksbergflexible12.555.71.99e+033.3 Brokvarterer3.240.003050.0591  3.233.251.74e+031.76e+031.71e+03
3.78e+07https://www.airbnb.com/rooms/37787726246       1439250      Apartment1094Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.655.62.42e+033.38Brokvarterer3.260.003290.119   3.263.271.84e+031.87e+031.81e+03
3.79e+07https://www.airbnb.com/rooms/37858655698       1500      Apartment10100Private room1.5112TRUETRUEIndre Byflexible12.655.72.84e+033.45Center3.430.005250.0204  3.423.442.71e+032.78e+032.65e+03
3.79e+07https://www.airbnb.com/rooms/37869162292       2149149      Apartment5793Private room1  112FALSETRUENrrebromoderate12.655.71.32e+033.12Brokvarterer3.270.00347-0.152   3.263.281.87e+031.9e+03 1.84e+03
3.79e+07https://www.airbnb.com/rooms/37903754452       110040      Apartment1398Private room1  112FALSETRUEAmager stflexible12.655.72.07e+033.32Amager3.220.0038 0.0985  3.213.221.65e+031.68e+031.62e+03
3.8e+07 https://www.airbnb.com/rooms/37960442498       12500      Apartment14100Private room1  112TRUETRUEAmager Vestmoderate12.655.72.24e+033.35Amager3.280.004750.0744  3.273.291.89e+031.93e+031.85e+03
3.8e+07 https://www.airbnb.com/rooms/38016977551       100      Apartment20100Private room1  002TRUETRUEsterbromoderate12.655.72.2e+03 3.34Brokvarterer3.260.004630.0848  3.253.271.81e+031.85e+031.78e+03
3.8e+07 https://www.airbnb.com/rooms/38018437299       100      Apartment1193Private room1  112FALSETRUEsterbroflexible12.655.71.2e+03 3.08Brokvarterer3.240.00306-0.159   3.233.241.73e+031.75e+031.7e+03 
3.8e+07 https://www.airbnb.com/rooms/38031871378       1390      Apartment2494Private room1  112FALSETRUEAmager Vestflexible12.655.61.55e+033.19Amager3.210.00374-0.0231  3.213.221.64e+031.66e+031.61e+03
3.8e+07 https://www.airbnb.com/rooms/38031878352       17550      House2498Private room1.5112TRUETRUEBispebjergflexible12.555.71.68e+033.23Nordvest3.2 0.007270.022   3.193.221.6e+03 1.65e+031.55e+03
3.82e+07https://www.airbnb.com/rooms/38189065299       2100185      Apartment1892Private room1  112FALSEFALSEBispebjergstrict_14_with_grace_period12.555.71.3e+03 3.11Nordvest3.170.00485-0.0533  3.163.181.47e+031.5e+03 1.43e+03
3.82e+07https://www.airbnb.com/rooms/38245859226       137149      Apartment2695Private room1  112TRUETRUEFrederiksbergflexible12.555.71.54e+033.19Brokvarterer3.270.00403-0.0847  3.263.281.87e+031.9e+03 1.83e+03
3.83e+07https://www.airbnb.com/rooms/38281615597       100      Apartment2999Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.72.39e+033.38Brokvarterer3.320.004240.0552  3.313.332.1e+03 2.14e+032.06e+03
3.83e+07https://www.airbnb.com/rooms/38337710398       1150100      Other1297Private room1  122FALSETRUEsterbrostrict_14_with_grace_period12.655.72.14e+033.33Brokvarterer3.360.00782-0.0305  3.353.382.3e+03 2.38e+032.22e+03
3.84e+07https://www.airbnb.com/rooms/383535711e+03       11000      Apartment1096Private room1.5112TRUETRUENrrebroflexible12.655.74.11e+033.61Brokvarterer3.3 0.004630.317   3.293.311.98e+032.02e+031.94e+03
3.84e+07https://www.airbnb.com/rooms/38428971252       1400      Apartment1198Private room1  012TRUEFALSEValbymoderate12.555.71.05e+033.02West3.150.00621-0.127   3.133.161.4e+03 1.44e+031.36e+03
3.84e+07https://www.airbnb.com/rooms/38445233252       11500      Apartment19100Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.555.71.16e+033.06Brokvarterer3.3 0.0042 -0.24    3.3 3.312.01e+032.05e+031.97e+03
3.85e+07https://www.airbnb.com/rooms/38515128498       11990      Apartment1597Private room1  112TRUEFALSEVanlsemoderate12.555.72.19e+033.34Nordvest3.180.005410.158   3.173.191.52e+031.56e+031.49e+03
3.86e+07https://www.airbnb.com/rooms/38578757452       100      Apartment2395Private room1  112FALSETRUEIndre Byflexible12.655.71.81e+033.26Center3.370.00398-0.116   3.373.382.36e+032.4e+03 2.32e+03
3.87e+07https://www.airbnb.com/rooms/386790921.13e+03100      Apartment1698Private room1  112TRUETRUEVesterbro-Kongens Enghaveflexible12.555.74.52e+033.65Brokvarterer3.270.004110.381   3.273.281.88e+031.91e+031.84e+03
3.87e+07https://www.airbnb.com/rooms/38690307259       1050      House1496Private room2  122TRUETRUEVesterbro-Kongens Enghavestrict_14_with_grace_period12.555.61.24e+033.09Brokvarterer3.390.00761-0.296   3.373.4 2.45e+032.53e+032.36e+03
3.88e+07https://www.airbnb.com/rooms/38844661352       100      Apartment2095Private room1  111FALSETRUEFrederiksbergflexible12.555.71.41e+033.15Brokvarterer3.210.00318-0.0564  3.2 3.211.6e+03 1.63e+031.58e+03
3.89e+07https://www.airbnb.com/rooms/38893757498       12000      Apartment1498Private room1  112FALSETRUEAmager Veststrict_14_with_grace_period12.655.72.19e+033.34Amager3.260.004150.0779  3.253.271.83e+031.87e+031.8e+03 
3.9e+07 https://www.airbnb.com/rooms/38951625452       2200100      Apartment13100Private room1  112FALSETRUENrrebromoderate12.655.72.01e+033.3 Brokvarterer3.270.003380.0295  3.273.281.88e+031.9e+03 1.85e+03
3.9e+07 https://www.airbnb.com/rooms/38997727803       100      Condominium1697Private room2  012TRUEFALSEIndre Bymoderate12.655.73.21e+033.51Center3.450.007820.056   3.443.472.82e+032.92e+032.73e+03
3.9e+07 https://www.airbnb.com/rooms/39020206399       2150100      Apartment2098Private room1  103TRUETRUEVesterbro-Kongens Enghavemoderate12.655.71.75e+033.24Brokvarterer3.340.00434-0.0951  3.333.352.17e+032.22e+032.13e+03
3.9e+07 https://www.airbnb.com/rooms/39037766319       1500      Condominium1098Private room1  112TRUEFALSEVesterbro-Kongens Enghavestrict_14_with_grace_period12.655.71.33e+033.12Brokvarterer3.330.00589-0.208   3.323.342.14e+032.2e+03 2.09e+03
3.9e+07 https://www.airbnb.com/rooms/39048376452       20250      Apartment26100Private room1  112TRUETRUEValbymoderate12.555.71.81e+033.26West3.2 0.005850.0595  3.193.211.58e+031.62e+031.54e+03
3.91e+07https://www.airbnb.com/rooms/39097184419       12500      Other1094Private room1  112TRUETRUENrrebrostrict_14_with_grace_period12.655.71.93e+033.28Brokvarterer3.390.00821-0.102   3.373.4 2.43e+032.53e+032.35e+03
3.91e+07https://www.airbnb.com/rooms/39144398272       120075      Apartment1198Private room1  112TRUETRUEBispebjergflexible12.555.71.59e+033.2 Nordvest3.160.005340.0445  3.153.171.43e+031.47e+031.4e+03 
3.92e+07https://www.airbnb.com/rooms/39183821352       12000      Other1597Private room1  122TRUETRUENrrebrostrict_14_with_grace_period12.655.71.61e+033.21Brokvarterer3.390.00816-0.185   3.383.412.46e+032.55e+032.37e+03
3.92e+07https://www.airbnb.com/rooms/39219620252       210050      Apartment1096Private room1  223TRUETRUEValbystrict_14_with_grace_period12.555.61.11e+033.04West3.290.00622-0.245   3.283.3 1.95e+032e+03       1.9e+03 
3.93e+07https://www.airbnb.com/rooms/39313935697       11500      Apartment2799Private room1  112TRUETRUEVesterbro-Kongens Enghavemoderate12.655.72.94e+033.47Brokvarterer3.3 0.004120.164   3.3 3.312.01e+032.05e+031.98e+03
3.95e+07https://www.airbnb.com/rooms/39497945299       10200      Apartment2399Private room1  112TRUETRUENrrebroflexible12.555.72e+03       3.3 Brokvarterer3.280.004060.024   3.273.281.89e+031.92e+031.85e+03
3.95e+07https://www.airbnb.com/rooms/39504833299       1150100      Other1892Private room1  103FALSETRUEsterbrostrict_14_with_grace_period12.655.71.75e+033.24Brokvarterer3.390.00783-0.15    3.383.412.46e+032.55e+032.38e+03
3.95e+07https://www.airbnb.com/rooms/39517646299       100      Apartment10100Private room1  112TRUETRUEAmager Vestflexible12.655.61.2e+03 3.08Amager3.250.0047 -0.171   3.243.261.77e+031.81e+031.74e+03
3.96e+07https://www.airbnb.com/rooms/39644559299       2375125      House1397Private room1  124TRUETRUEFrederiksbergmoderate12.555.71.57e+033.2 Brokvarterer3.390.00729-0.193   3.383.4 2.45e+032.53e+032.37e+03
3.97e+07https://www.airbnb.com/rooms/397193531e+03       2400200      Apartment1297Private room1  122TRUETRUEIndre Bystrict_14_with_grace_period12.655.74.41e+033.64Center3.450.004980.196   3.443.462.81e+032.87e+032.75e+03
3.98e+07https://www.airbnb.com/rooms/39773379199       170100      Apartment2199Private room1  112TRUETRUEAmager stmoderate12.655.71.27e+033.1 Amager3.280.00468-0.174   3.273.291.89e+031.93e+031.85e+03
3.99e+07https://www.airbnb.com/rooms/39885777212       17550      Apartment1298Private room1  112FALSETRUEsterbroflexible12.655.71.12e+033.05Brokvarterer3.240.00312-0.193   3.243.251.75e+031.78e+031.73e+03
4e+07       https://www.airbnb.com/rooms/39989250352       237575      House1998Private room1  123TRUETRUEFrederiksbergflexible12.555.71.78e+033.25Brokvarterer3.330.00698-0.0778  3.323.342.13e+032.2e+03 2.07e+03
4e+07       https://www.airbnb.com/rooms/40032118312       17585      Apartment1497Private room1  112TRUETRUEBispebjergflexible12.555.71.66e+033.22Nordvest3.160.005310.0654  3.153.171.43e+031.47e+031.4e+03 
4.01e+07https://www.airbnb.com/rooms/40081875252       16080      Apartment3697Private room1  111TRUETRUENrrebromoderate12.655.71.39e+033.14Brokvarterer3.270.00418-0.124   3.263.271.85e+031.88e+031.81e+03
4.02e+07https://www.airbnb.com/rooms/40247003398       280150      Apartment3595Private room1  122TRUETRUENrrebromoderate12.655.71.67e+033.22Brokvarterer3.3 0.00407-0.0766  3.293.311.99e+032.03e+031.96e+03
4.02e+07https://www.airbnb.com/rooms/40247677597       280150      Apartment3197Private room1  112TRUETRUENrrebromoderate12.655.72.47e+033.39Brokvarterer3.3 0.004080.0906  3.293.312e+03       2.04e+031.97e+03
4.03e+07https://www.airbnb.com/rooms/40338902299       13000      Apartment1293Private room1  112FALSETRUEAmager stmoderate12.655.61.5e+03 3.17Amager3.240.00393-0.0623  3.233.241.73e+031.76e+031.7e+03 
4.05e+07https://www.airbnb.com/rooms/40522266252       13000      Apartment1090Private room1  112FALSETRUEAmager stflexible12.655.61.31e+033.12Amager3.210.00378-0.0895  3.2 3.211.61e+031.63e+031.58e+03
4.05e+07https://www.airbnb.com/rooms/40527430299       250100      Townhouse1398Private room1  123TRUETRUEAmager Vestmoderate12.655.61.25e+033.1 Amager3.320.00875-0.226   3.3 3.342.1e+03 2.18e+032.02e+03
4.07e+07https://www.airbnb.com/rooms/40715663352       11500      Other2096Private room2  113TRUETRUEsterbrostrict_14_with_grace_period12.655.71.56e+033.19Brokvarterer3.480.00886-0.287   3.463.5 3.02e+033.14e+032.9e+03 
4.12e+07https://www.airbnb.com/rooms/41161863352       368100      Apartment1090Private room0.5134FALSETRUEAmager Veststrict_14_with_grace_period12.655.71.48e+033.17Amager3.3 0.00532-0.128   3.293.311.98e+032.03e+031.93e+03
4.13e+07https://www.airbnb.com/rooms/41260940551       100      Apartment1394Private room1  112FALSETRUEVesterbro-Kongens Enghavemoderate12.555.72.2e+03 3.34Brokvarterer3.270.003270.0778  3.263.271.84e+031.87e+031.82e+03
4.18e+07https://www.airbnb.com/rooms/41848710252       100      Apartment1295Private room1  111FALSETRUENrrebromoderate12.655.71.01e+033   Brokvarterer3.230.0034 -0.227   3.223.241.7e+03 1.73e+031.67e+03
4.19e+07https://www.airbnb.com/rooms/41850840226       135170      Other2198Private room1  113TRUETRUEAmager Veststrict_14_with_grace_period12.655.61.62e+033.21Amager3.4 0.00831-0.194   3.393.422.53e+032.63e+032.44e+03
# Change order of property types to have other in the end
model_predictions$prop_type_simplified <- factor(model_predictions$prop_type_simplified, c("Apartment", "Condominium", "House", "Townhouse", "Other"))

# Graph distribution of fitted values  
ggplot(model_predictions, aes(x = fitted_price_final)) +
  geom_density() +
  labs(y = "",
       x = "Price of an AirBnB in Copenhagen") +
  theme_bw()

# Facet by neighbourhood
ggplot(model_predictions, aes(x = fitted_price_final)) +
  geom_density() +
  labs(y = "",
       x = "Price of an AirBnB in Copenhagen") +
  facet_wrap(~neighbourhood_simplified) +
  theme_bw()

# Facet by prop_type_simplified
ggplot(model_predictions, aes(x = fitted_price_final)) +
  geom_density() +
  labs(y = "",
       x = "Price of an AirBnB in Copenhagen") +
  facet_wrap(~prop_type_simplified) +
  theme_bw()

# Facet by neighbourhood & prop_type_simplified
ggplot(model_predictions, aes(x = fitted_price_final)) +
  geom_density() +
  labs(y = "",
       x = "Price of an AirBnB in Copenhagen") +
  facet_grid(neighbourhood_simplified ~ prop_type_simplified) +
  theme_bw()

# Splitting data in training and testing sets
library(rsample)
set.seed(1234)  # for reproducibility, and to always get the same split, set the random seed first

train_test_split <- initial_split(listings_log, prop = 0.80)
listings_train <- training(train_test_split)
listings_test <- testing(train_test_split)
 
rmse_train <- listings_train %>%
  mutate(predictions = predict(final_model, .)) %>%
  summarise(sqrt(sum(predictions - price_4_nights_log,na.rm = TRUE)**2/n())) %>% 
   pull()


rmse_train
## [1] 0.01582266
rmse_test <- listings_test %>%
  mutate(predictions = predict(final_model, .)) %>%
  summarise(sqrt(sum(predictions - price_4_nights_log,na.rm = TRUE)**2/n())) %>% 
  pull()

rmse_test
## [1] 0.0316474
# Find mean and median of the fitted prices
model_predictions %>%
  summarize(mean_price = mean(fitted_price_final, na.rm = TRUE), 
            median_price = median(fitted_price_final, na.rm = TRUE)
            )
mean_pricemedian_price
1.94e+031.88e+03

As the price distribution is right skewed, choosing mean as measure to predict the final price wouldn’t be economical so we’ve decided to use the median because it fits our budget.

# Locate the median value property
predicted_value <- model_predictions %>%
  filter(fitted_price_final == median(fitted_price_final, na.rm = TRUE))

predicted_value
idlisting_urlpriceguests_includedcleaning_feeextra_peopleprop_type_simplifiednumber_of_reviewsreview_scores_ratingroom_typebathroomsbedroomsbedsaccommodateshost_is_superhostis_location_exactneighbourhood_cleansedcancellation_policylongitudelatitudeprice_4_nightsprice_4_nights_logneighbourhood_simplified.fitted.se.fit.residlowerupperfitted_price_finalupper_finallower_final

print(predicted_value\(lower_final) + print(predicted_value\)fitted_price_final) + print(predicted_value$upper_final)

predicted price: 1887.023 $ confidence interval: $ 1839.692 $ 1935.572

To DO - select relevant variables - interaction variables - write out explanations & analyses (e.g. for residual plots) - add titles to graphs